1/* 2 * @test /nodynamiccopyright/ 3 * @bug 8007096 4 * @summary DocLint parsing problems with some comments 5 * @build DocLintTester 6 * @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java 7 * @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java 8 * @author jlahoda 9 */ 10 11/**@deprecated*/ 12public class EndWithIdentifierTest { 13 14 /**{@link*/ 15 private void unfinishedInlineTagName() {} 16 17 /**@see List*/ 18 private void endsWithIdentifier() {} 19 20 /**&*/ 21 private void entityName() {} 22 23 /**<a*/ 24 private void tag() {} 25 26 /**</a*/ 27 private void tagEnd() {} 28 29 /**<a name*/ 30 private void attribute() {} 31} 32 33 34