test/tools/doclint/EndWithIdentifierTest.java

Wed, 13 Aug 2014 14:50:00 -0700

author
katleman
date
Wed, 13 Aug 2014 14:50:00 -0700
changeset 2549
0b6cc4ea670f
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u40-b01 for changeset bf89a471779d

     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