/
githubmirror
/
jdk17u-dev
Обзор
Документация
Войти
/
githubmirror
/
jdk17u-dev
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/langtools/tools/doclint/UsesTest.java
29 строк
676 B
Jonathan Gibbons
8252712: move doclint to jdk.javadoc module
23 сен 2020, 22:55
23 сен 2020, 22:55
f765a7f
Код
Авторство
О чём код?
/* * @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 -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 { } }