8174695: Fix @since in module-info.java in dev/langtools repo

Reviewed-by: mcimadamore
This commit is contained in:
Hamlin Li 2017-02-13 18:19:36 -08:00
parent cd867f35bd
commit ce8df4ca58
4 changed files with 8 additions and 0 deletions

View file

@ -29,6 +29,8 @@
* These APIs model declarations and types of the Java programming language, * These APIs model declarations and types of the Java programming language,
* and define interfaces for tools such as compilers which can be invoked * and define interfaces for tools such as compilers which can be invoked
* from a program. * from a program.
*
* @since 9
*/ */
module java.compiler { module java.compiler {
exports javax.annotation.processing; exports javax.annotation.processing;

View file

@ -26,6 +26,8 @@
/** Defines the implementation of the /** Defines the implementation of the
* {@link javax.tools.ToolProvider#getSystemJavaCompiler system Java compiler} * {@link javax.tools.ToolProvider#getSystemJavaCompiler system Java compiler}
* and its command line equivalent, <em>javac</em>, as well as <em>javah</em>. * and its command line equivalent, <em>javac</em>, as well as <em>javah</em>.
*
* @since 9
*/ */
module jdk.compiler { module jdk.compiler {
requires transitive java.compiler; requires transitive java.compiler;

View file

@ -26,6 +26,8 @@
/** Defines the implementation of the /** Defines the implementation of the
* {@link javax.tools.ToolProvider#getSystemDocumentationTool system documentation tool} * {@link javax.tools.ToolProvider#getSystemDocumentationTool system documentation tool}
* and its command line equivalent, <em>javadoc</em>. * and its command line equivalent, <em>javadoc</em>.
*
* @since 9
*/ */
module jdk.javadoc { module jdk.javadoc {
requires transitive java.compiler; requires transitive java.compiler;

View file

@ -25,6 +25,8 @@
/** Defines tools for analysing dependencies in Java libraries and programs, including /** Defines tools for analysing dependencies in Java libraries and programs, including
* the <em>jdeps</em> and <em>javap</em> tools. * the <em>jdeps</em> and <em>javap</em> tools.
*
* @since 9
*/ */
module jdk.jdeps { module jdk.jdeps {
requires java.base; requires java.base;