publicclass T6551367 { public T6551367() {} publicboolean run(DocletEnvironment root) { returntrue;
} /** Here, in the javadoc for this method, I try to link to *{@link#<init>aconstructor}.
*/ publicstaticvoid main(String... args) {
File testSrc = new File(System.getProperty("test.src", "."));
File destDir = new File(System.getProperty("user.dir", ".")); for (String file : args) {
File source = new File(testSrc, file);
String[] array = { "-Xdoclint:none",
source.getPath(), "-d",
destDir.getAbsolutePath()
};
int rc = jdk.javadoc.internal.tool.Main.execute(array); if (rc != 0) thrownew Error("unexpected exit from javadoc: " + rc);
}
}
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.