langtools/test/tools/doclint/EndWithIdentifierTest.java
author naoto
Tue, 29 Mar 2016 17:06:33 -0700
changeset 36739 145210aba850
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8152704: jlink command line output/help message improvement Reviewed-by: mchung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15552
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     1
/*
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     2
 * @test /nodynamiccopyright/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     3
 * @bug 8007096
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     4
 * @summary DocLint parsing problems with some comments
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 15552
diff changeset
     5
 * @modules jdk.compiler/com.sun.tools.doclint
15552
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     6
 * @build DocLintTester
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     7
 * @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     8
 * @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     9
 * @author jlahoda
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    10
 */
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    11
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    12
/**@deprecated*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    13
public class EndWithIdentifierTest {
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    14
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    15
    /**{@link*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    16
    private void unfinishedInlineTagName() {}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    17
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    18
    /**@see List*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    19
    private void endsWithIdentifier() {}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    20
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    21
    /**&amp*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    22
    private void entityName() {}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    23
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    24
    /**<a*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    25
    private void tag() {}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    26
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    27
    /**</a*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    28
    private void tagEnd() {}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    29
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    30
    /**<a name*/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    31
    private void attribute() {}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    32
}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    33