mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 02:24:40 +02:00
8174695: Fix @since in module-info.java in dev/langtools repo
Reviewed-by: mcimadamore
This commit is contained in:
parent
cd867f35bd
commit
ce8df4ca58
4 changed files with 8 additions and 0 deletions
|
@ -29,6 +29,8 @@
|
|||
* These APIs model declarations and types of the Java programming language,
|
||||
* and define interfaces for tools such as compilers which can be invoked
|
||||
* from a program.
|
||||
*
|
||||
* @since 9
|
||||
*/
|
||||
module java.compiler {
|
||||
exports javax.annotation.processing;
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
/** Defines the implementation of the
|
||||
* {@link javax.tools.ToolProvider#getSystemJavaCompiler system Java compiler}
|
||||
* and its command line equivalent, <em>javac</em>, as well as <em>javah</em>.
|
||||
*
|
||||
* @since 9
|
||||
*/
|
||||
module jdk.compiler {
|
||||
requires transitive java.compiler;
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
/** Defines the implementation of the
|
||||
* {@link javax.tools.ToolProvider#getSystemDocumentationTool system documentation tool}
|
||||
* and its command line equivalent, <em>javadoc</em>.
|
||||
*
|
||||
* @since 9
|
||||
*/
|
||||
module jdk.javadoc {
|
||||
requires transitive java.compiler;
|
||||
|
|
|
@ -25,6 +25,8 @@
|
|||
|
||||
/** Defines tools for analysing dependencies in Java libraries and programs, including
|
||||
* the <em>jdeps</em> and <em>javap</em> tools.
|
||||
*
|
||||
* @since 9
|
||||
*/
|
||||
module jdk.jdeps {
|
||||
requires java.base;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue