2013-01-30 17:40:54 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 8007096
|
|
|
|
* @summary DocLint parsing problems with some comments
|
2020-09-23 19:55:08 +00:00
|
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
|
2013-01-30 17:40:54 +00:00
|
|
|
* @build DocLintTester
|
|
|
|
* @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java
|
|
|
|
* @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java
|
|
|
|
* @author jlahoda
|
|
|
|
*/
|
|
|
|
|
2021-08-16 20:48:25 +00:00
|
|
|
/**
|
|
|
|
* .
|
|
|
|
* @deprecated*/
|
2013-01-30 17:40:54 +00:00
|
|
|
public class EndWithIdentifierTest {
|
|
|
|
|
|
|
|
/**{@link*/
|
|
|
|
private void unfinishedInlineTagName() {}
|
|
|
|
|
2021-08-16 20:48:25 +00:00
|
|
|
/**
|
|
|
|
* .
|
|
|
|
* @see List*/
|
2013-01-30 17:40:54 +00:00
|
|
|
private void endsWithIdentifier() {}
|
|
|
|
|
|
|
|
/**&*/
|
|
|
|
private void entityName() {}
|
|
|
|
|
|
|
|
/**<a*/
|
|
|
|
private void tag() {}
|
|
|
|
|
|
|
|
/**</a*/
|
|
|
|
private void tagEnd() {}
|
|
|
|
|
|
|
|
/**<a name*/
|
|
|
|
private void attribute() {}
|
2021-08-11 18:03:40 +00:00
|
|
|
|
|
|
|
/** . */
|
|
|
|
EndWithIdentifierTest() { }
|
2013-01-30 17:40:54 +00:00
|
|
|
}
|
|
|
|
|