/* * @test /nodynamiccopyright/ * @bug 8004832 * @summary Add new doclint package * @build DocLintTester * @run main DocLintTester -Xmsgs:-html HtmlTagsTest.java * @run main DocLintTester -ref HtmlTagsTest.out HtmlTagsTest.java */ /** */ public class HtmlTagsTest { /** * ... */ public void unknownTag1() { } /** *
*/ public void unknownTag2() { } /** *
*/ public void selfClosingTag() { } /** * */ public void not_allowed() { } /** *

*/ public void not_allowed_inline() { } /** * {@link java.lang.String

} * {@link java.lang.String

} */ public void not_allowed_inline_2() { } /** * alt */ public void end_not_allowed() { } /** * */ public void start_not_matched() { } /** * */ public void end_unexpected() { } /** *

*/ public void text_not_allowed() { } /** * */ public void inline_not_allowed() { } }