test/tools/doclint/MissingCommentTest.java

Tue, 08 Jan 2019 16:17:56 -0800

author
diazhou
date
Tue, 08 Jan 2019 16:17:56 -0800
changeset 3791
6d30981ed95a
parent 0
959103a6100f
permissions
-rw-r--r--

Added tag jdk8u202-b26 for changeset c0f526208190

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

mercurial