test/tools/doclint/MissingCommentTest.java

Tue, 19 Mar 2013 19:16:59 -0700

author
jjg
date
Tue, 19 Mar 2013 19:16:59 -0700
changeset 1650
74d7f9bcac93
parent 0
959103a6100f
permissions
-rw-r--r--

8010317: DocLint incorrectly reports some <pre> tags as empty
Reviewed-by: darcy

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @build DocLintTester
     4  * @run main DocLintTester -Xmsgs:-missing MissingCommentTest.java
     5  * @run main DocLintTester -Xmsgs:missing -ref MissingCommentTest.out MissingCommentTest.java
     6  */
     8 public class MissingCommentTest {
     9     MissingCommentTest() { }
    11     int missingComment;
    13     void missingComment() { }
    14 }

mercurial