author | naoto |
Tue, 29 Mar 2016 17:06:33 -0700 | |
changeset 36739 | 145210aba850 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
15552 | 1 |
/* |
2 |
* @test /nodynamiccopyright/ |
|
3 |
* @bug 8007096 |
|
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 | 6 |
* @build DocLintTester |
7 |
* @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java |
|
8 |
* @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java |
|
9 |
* @author jlahoda |
|
10 |
*/ |
|
11 |
||
12 |
/**@deprecated*/ |
|
13 |
public class EndWithIdentifierTest { |
|
14 |
||
15 |
/**{@link*/ |
|
16 |
private void unfinishedInlineTagName() {} |
|
17 |
||
18 |
/**@see List*/ |
|
19 |
private void endsWithIdentifier() {} |
|
20 |
||
21 |
/**&*/ |
|
22 |
private void entityName() {} |
|
23 |
||
24 |
/**<a*/ |
|
25 |
private void tag() {} |
|
26 |
||
27 |
/**</a*/ |
|
28 |
private void tagEnd() {} |
|
29 |
||
30 |
/**<a name*/ |
|
31 |
private void attribute() {} |
|
32 |
} |
|
33 |