langtools/test/tools/doclint/EndWithIdentifierTest.java
author alanb
Wed, 21 Aug 2013 09:59:12 +0100
changeset 19565 e1593e8a70ff
parent 15552 99e4c7eb352c
child 30730 d3ce7619db2c
permissions -rw-r--r--
8023351: Add TEST.groups in preparation to simplify rules in jdk/test/Makefile Reviewed-by: lancea, mduigou

/*
 * @test /nodynamiccopyright/
 * @bug 8007096
 * @summary DocLint parsing problems with some comments
 * @build DocLintTester
 * @run main DocLintTester -Xmsgs:-html EndWithIdentifierTest.java
 * @run main DocLintTester -Xmsgs -ref EndWithIdentifierTest.out EndWithIdentifierTest.java
 * @author jlahoda
 */

/**@deprecated*/
public class EndWithIdentifierTest {

    /**{@link*/
    private void unfinishedInlineTagName() {}

    /**@see List*/
    private void endsWithIdentifier() {}

    /**&amp*/
    private void entityName() {}

    /**<a*/
    private void tag() {}

    /**</a*/
    private void tagEnd() {}

    /**<a name*/
    private void attribute() {}
}