test/tools/doclint/EndWithIdentifierTest.java

changeset 0
959103a6100f
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/test/tools/doclint/EndWithIdentifierTest.java	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,32 @@
     1.4 +/*
     1.5 + * @test /nodynamiccopyright/
     1.6 + * @bug 8007096
     1.7 + * @summary DocLint parsing problems with some comments
     1.8 + * @build DocLintTester
     1.9 + * @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java
    1.10 + * @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java
    1.11 + * @author jlahoda
    1.12 + */
    1.13 +
    1.14 +/**@deprecated*/
    1.15 +public class EndWithIdentifierTest {
    1.16 +
    1.17 +    /**{@link*/
    1.18 +    private void unfinishedInlineTagName() {}
    1.19 +
    1.20 +    /**@see List*/
    1.21 +    private void endsWithIdentifier() {}
    1.22 +
    1.23 +    /**&amp*/
    1.24 +    private void entityName() {}
    1.25 +
    1.26 +    /**<a*/
    1.27 +    private void tag() {}
    1.28 +
    1.29 +    /**</a*/
    1.30 +    private void tagEnd() {}
    1.31 +
    1.32 +    /**<a name*/
    1.33 +    private void attribute() {}
    1.34 +}
    1.35 +

mercurial