Home | History | Annotate | Download | only in javadoc

Lines Matching refs:EOL

31 import static com.github.javaparser.utils.Utils.EOL;
45 Javadoc javadoc = new Javadoc(JavadocDescription.parseText("first line" + EOL + "second line"));
46 assertEquals("first line" + EOL + "second line" + EOL, javadoc.toText());
51 Javadoc javadoc = new Javadoc(JavadocDescription.parseText("first line" + EOL + "second line"));
53 assertEquals("first line" + EOL + "second line" + EOL + EOL + "@foo something useful" + EOL, javadoc.toText());
59 assertEquals(new JavadocComment("" + EOL + "\t\t "), javadoc.toComment("\t\t"));
64 Javadoc javadoc = new Javadoc(JavadocDescription.parseText("first line" + EOL + "second line"));
65 assertEquals(new JavadocComment("" + EOL + "\t\t * first line" + EOL + "\t\t * second line" + EOL + "\t\t "), javadoc.toComment("\t\t"));
70 Javadoc javadoc = new Javadoc(JavadocDescription.parseText("first line" + EOL + "second line"));
72 assertEquals(new JavadocComment("" + EOL + "\t\t * first line" + EOL + "\t\t * second line" + EOL + "\t\t * " + EOL + "\t\t * @foo something useful" + EOL + "\t\t "), javadoc.toComment("\t\t"));
77 Javadoc javadoc = JavaParser.parseJavadoc("first line" + EOL + "second line" + EOL + EOL + "@param node a node" + EOL + "@return result the result");
78 assertEquals("first line" + EOL + "second line", javadoc.getDescription().toText());
85 "Returns the {@link TOFilename}s of all files that existed during the requested" + EOL +
86 "{@link TOVersion}." + EOL +
87 "" + EOL +
88 "@param versionID the id of the {@link TOVersion}." + EOL +
89 "@return the filenames" + EOL +
90 "@throws InvalidIDException if the {@link IPersistence} doesn't recognize the given versionID." + EOL;
97 String comment = " * The type of the Object to be mapped." + EOL +
98 " * This interface maps the given Objects to existing ones in the database and" + EOL +
99 " * saves them." + EOL +
100 " * " + EOL +
101 " * @author censored" + EOL +
102 " * " + EOL +
103 " * @param <T>" + EOL;