test/tools/doclint/EndWithIdentifierTest.java

Mon, 23 Sep 2013 17:27:38 +0400

author
kizune
date
Mon, 23 Sep 2013 17:27:38 +0400
changeset 2048
809a50f24d6f
parent 0
959103a6100f
permissions
-rw-r--r--

7154966: CRs found to be in Fixed state with no test and no noreg- keyword.
Reviewed-by: ksrini

     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  */
    11 /**@deprecated*/
    12 public class EndWithIdentifierTest {
    14     /**{@link*/
    15     private void unfinishedInlineTagName() {}
    17     /**@see List*/
    18     private void endsWithIdentifier() {}
    20     /**&amp*/
    21     private void entityName() {}
    23     /**<a*/
    24     private void tag() {}
    26     /**</a*/
    27     private void tagEnd() {}
    29     /**<a name*/
    30     private void attribute() {}
    31 }

mercurial