test/tools/doclint/tidy/UnescapedOrUnknownEntity.java

Thu, 20 Dec 2012 17:59:46 +0000

author
jjg
date
Thu, 20 Dec 2012 17:59:46 +0000
changeset 1465
a22f23fb7abf
parent 1455
75ab654b5cd5
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8005307: fix missing @bug tags
Reviewed-by: jjh

jjg@1455 1 /*
jjg@1455 2 * @test /nodynamiccopyright/
jjg@1465 3 * @bug 8004832
jjg@1465 4 * @summary Add new doclint package
jjg@1455 5 * @library ..
jjg@1455 6 * @build DocLintTester
jjg@1455 7 * @run main DocLintTester -ref UnescapedOrUnknownEntity.out UnescapedOrUnknownEntity.java
jjg@1455 8 */
jjg@1455 9
jjg@1455 10 // tidy: Warning: unescaped & or unknown entity ".*"
jjg@1455 11 // tidy: Warning: unescaped & which should be written as &
jjg@1455 12 // tidy: Warning: entity ".*" doesn't end in ';'
jjg@1455 13
jjg@1455 14 /**
jjg@1455 15 * L&F
jjg@1455 16 * Drag&Drop
jjg@1455 17 * if (a & b);
jjg@1455 18 */
jjg@1455 19 public class UnescapedOrUnknownEntity { }

mercurial