equal
deleted
inserted
replaced
|
1 /* |
|
2 * @test /nodynamiccopyright/ |
|
3 * @bug 8006248 |
|
4 * @summary DocLint should report unknown tags |
|
5 * @build DocLintTester |
|
6 * @run main DocLintTester CustomTagTest.java |
|
7 * @run main DocLintTester -XcustomTags: -ref CustomTagTest.out CustomTagTest.java |
|
8 * @run main DocLintTester -XcustomTags:customTag -ref CustomTagTestWithOption.out CustomTagTest.java |
|
9 * @run main DocLintTester -XcustomTags:customTag,anotherCustomTag -ref CustomTagTestWithOption.out CustomTagTest.java |
|
10 * @author bpatel |
|
11 */ |
|
12 |
|
13 /** |
|
14 * @customTag Text for a custom tag. |
|
15 * @unknownTag Text for an unknown tag. |
|
16 */ |
|
17 public class CustomTagTest { |
|
18 } |
|
19 |