langtools/test/tools/doclint/EndWithIdentifierTest.java
author joehw
Mon, 26 Aug 2013 21:08:58 -0700
changeset 22415 4e3bef0828af
parent 15552 99e4c7eb352c
child 30730 d3ce7619db2c
permissions -rw-r--r--
8022935: Enhance Apache resolver classes Reviewed-by: alanb, mchung, skoivu

/*
 * @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() {}
}