8179035: Include tool modules in unified docs

Reviewed-by: lancea
This commit is contained in:
Mandy Chung 2017-04-20 15:06:40 -07:00
parent e4e2e277fc
commit 7233c14a5d
2 changed files with 18 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -23,6 +23,13 @@
* questions. * questions.
*/ */
/**
* Defines tools for transforming a JAR file into a compressed pack200 file
* and transforming a packed file into a JAR file, including the pack200,
* and unpack200 tools.
*
* @moduleGraph
* @since 9
*/
module jdk.pack { module jdk.pack {
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -23,9 +23,16 @@
* questions. * questions.
*/ */
/**
* Defines the rmic compiler for generating stubs and skeletons using
* the Java Remote Method Protocol (JRMP) and
* stubs and tie class files (IIOP protocol) for remote objects.
*
* @moduleGraph
* @since 9
*/
module jdk.rmic { module jdk.rmic {
requires java.corba; requires java.corba;
requires jdk.compiler; requires jdk.compiler;
requires jdk.javadoc; requires jdk.javadoc;
} }