test/tools/doclint/MissingCommentTest.java

Fri, 30 Aug 2013 15:59:33 -0700

author
bpatel
date
Fri, 30 Aug 2013 15:59:33 -0700
changeset 1995
dd64288f5659
parent 0
959103a6100f
permissions
-rw-r--r--

7198273: RFE : Javadoc Accessibility : Hyperlinks should contain text or an image with alt text
Reviewed-by: jjg

     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