test/tools/doclint/html/TextNotAllowed.java

Wed, 27 Apr 2016 01:34:52 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:34:52 +0800
changeset 0
959103a6100f
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/langtools/
changeset: 2573:53ca196be1ae
tag: jdk8u25-b17

aoqi@0 1 /*
aoqi@0 2 * @test /nodynamiccopyright/
aoqi@0 3 * @bug 8004832
aoqi@0 4 * @summary Add new doclint package
aoqi@0 5 * @library ..
aoqi@0 6 * @build DocLintTester
aoqi@0 7 * @run main DocLintTester -ref TextNotAllowed.out TextNotAllowed.java
aoqi@0 8 */
aoqi@0 9
aoqi@0 10 /**
aoqi@0 11 * <dl> abc <dt> term </dt> def <dd> description </dd> ghi </dl>
aoqi@0 12 * <ol> abc <li> item </li> def <li> item </li> ghi </ol>
aoqi@0 13 * <ul> abc <li> item </li> def <li> item </li> ghi </ul>
aoqi@0 14 *
aoqi@0 15 * <table summary=description> abc </table>
aoqi@0 16 * <table summary=description> <thead> abc </thead> </table>
aoqi@0 17 * <table summary=description> <tbody> abc </tbody> </table>
aoqi@0 18 * <table summary=description> <tfoot> abc </tfoot> </table>
aoqi@0 19 * <table summary=description> <tr> abc </tr> </table>
aoqi@0 20 *
aoqi@0 21 * <dl> &amp; <dt> term </dt> &lt; <dd> description </dd> &gt; </dl>
aoqi@0 22 * <ol> &amp; <li> item </li> &lt; <li> item </li> &gt; </ol>
aoqi@0 23 * <ul> &amp; <li> item </li> &lt; <li> item </li> &gt; </ul>
aoqi@0 24 *
aoqi@0 25 * <table summary=description> &amp; </table>
aoqi@0 26 * <table summary=description> <thead> &amp; </thead> </table>
aoqi@0 27 * <table summary=description> <tbody> &amp; </tbody> </table>
aoqi@0 28 * <table summary=description> <tfoot> &amp; </tfoot> </table>
aoqi@0 29 * <table summary=description> <tr> &amp; </tr> </table>
aoqi@0 30 *
aoqi@0 31 */
aoqi@0 32 public class TextNotAllowed { }

mercurial