test/tools/doclint/CustomTagTest.java

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

mercurial