test/tools/doclint/EndWithIdentifierTest.java

Thu, 10 Oct 2013 10:09:28 -0700

author
cl
date
Thu, 10 Oct 2013 10:09:28 -0700
changeset 2068
a0e8fd2464d6
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8-b111 for changeset af6244ba81b6

     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