langtools/test/tools/doclint/UnfinishedInlineTagTest.java
author hseigel
Wed, 01 Mar 2017 08:00:02 -0500
changeset 46194 5596e6f63072
parent 30730 d3ce7619db2c
permissions -rw-r--r--
8172307: Remove ununsed JVM API JVM_GetModuleByPackageName() Summary: Remove get_module_by_package_name() etc., and unneeded test. Reviewed-by: sspitsyn, gtriantafill
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15552
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     1
/*
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     2
 * @test /nodynamiccopyright/
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     3
 * @bug 8007096
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     4
 * @summary DocLint parsing problems with some comments
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 15552
diff changeset
     5
 * @modules jdk.compiler/com.sun.tools.doclint
15552
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     6
 * @build DocLintTester
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     7
 * @run main DocLintTester -Xmsgs:-html UnfinishedInlineTagTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     8
 * @run main DocLintTester -Xmsgs -ref UnfinishedInlineTagTest.out UnfinishedInlineTagTest.java
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
     9
 * @author jlahoda
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    10
 */
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    11
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    12
import java.util.List;
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    13
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    14
/**{@link List
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    15
 */
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    16
public class UnfinishedInlineTagTest {
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    17
}
99e4c7eb352c 8007096: DocLint parsing problems with some comments
jjg
parents:
diff changeset
    18