Home | History | Annotate | Download | only in src

Lines Matching refs:LINE

27     private static final Pattern LINE = Pattern.compile("(.*)[\r]?\n",
70 // The document is properties up until the line "@jd:body".
74 Matcher lines = LINE.matcher(filedata);
75 String line = null;
77 line = lines.group(1);
78 if (line.length() > 0) {
79 if (line.equals("@jd:body")) {
83 Matcher prop = PROP.matcher(line);
96 if (line != null) {
97 System.err.println(docfile + ":" + lineno + ":" + line);