Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/langtools/test/tools/doclint/EndWithIdentifierTest.java
32285 views
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
*/
10
11
/**@deprecated*/
12
public class EndWithIdentifierTest {
13
14
/**{@link*/
15
private void unfinishedInlineTagName() {}
16
17
/**@see List*/
18
private void endsWithIdentifier() {}
19
20
/**&amp*/
21
private void entityName() {}
22
23
/**<a*/
24
private void tag() {}
25
26
/**</a*/
27
private void tagEnd() {}
28
29
/**<a name*/
30
private void attribute() {}
31
}
32
33
34