test/tools/doclint/MissingCommentTest.java

Mon, 21 Jan 2013 10:00:46 -0800

author
jjg
date
Mon, 21 Jan 2013 10:00:46 -0800
changeset 1506
4a3cfc970c6f
parent 0
959103a6100f
permissions
-rw-r--r--

8006263: Supplementary test cases needed for doclint
Reviewed-by: mcimadamore
Contributed-by: peter.jensen@oracle.com

     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