Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
29 lines
696 B
Java
29 lines
696 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8160196
|
|
* @summary Module summary page should display information based on "api" or "detail" mode.
|
|
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
|
|
* @build DocLintTester
|
|
* @run main DocLintTester -Xmsgs:all,-missing -ref UsesTest.out UsesTest.java
|
|
*/
|
|
|
|
/**
|
|
* Invalid use of uses in class documentation.
|
|
*
|
|
* @uses NotFound
|
|
*/
|
|
public class UsesTest {
|
|
/**
|
|
* Invalid use of uses in field documentation
|
|
*
|
|
* @uses NotFound Test description.
|
|
*/
|
|
public int invalid_param;
|
|
|
|
/**
|
|
* Invalid use of uses in method documentation
|
|
*
|
|
* @uses NotFound Test description.
|
|
*/
|
|
public class InvalidParam { }
|
|
}
|