view test/tools/doclint/CustomTagTest.java @ 2584:667843bd2193

8006248: Since addition of -Xdoclint, javadoc ignores unknown tags Reviewed-by: jjg
author bpatel
date Thu, 24 Oct 2013 11:22:50 -0700
parents
children
line wrap: on
line source

/*
 * @test /nodynamiccopyright/
 * @bug 8006248
 * @summary DocLint should report unknown tags
 * @build DocLintTester
 * @run main DocLintTester CustomTagTest.java
 * @run main DocLintTester -XcustomTags: -ref CustomTagTest.out CustomTagTest.java
 * @run main DocLintTester -XcustomTags:customTag -ref CustomTagTestWithOption.out CustomTagTest.java
 * @run main DocLintTester -XcustomTags:customTag,anotherCustomTag -ref CustomTagTestWithOption.out CustomTagTest.java
 * @author bpatel
 */

/**
 * @customTag Text for a custom tag.
 * @unknownTag Text for an unknown tag.
 */
public class CustomTagTest {
}