8179035: Include tool modules in unified docs
authormchung
Thu, 20 Apr 2017 15:06:40 -0700
changeset 44781 5a43cca8fc10
parent 44780 928d2d931b66
child 44782 15f36f4cf2b7
child 44783 1b4068aea6df
8179035: Include tool modules in unified docs Reviewed-by: lancea
jdk/src/jdk.pack/share/classes/module-info.java
jdk/src/jdk.rmic/share/classes/module-info.java
--- a/jdk/src/jdk.pack/share/classes/module-info.java	Thu Apr 20 14:09:35 2017 -0700
+++ b/jdk/src/jdk.pack/share/classes/module-info.java	Thu Apr 20 15:06:40 2017 -0700
@@ -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.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,13 @@
  * 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 {
 }
-
--- a/jdk/src/jdk.rmic/share/classes/module-info.java	Thu Apr 20 14:09:35 2017 -0700
+++ b/jdk/src/jdk.rmic/share/classes/module-info.java	Thu Apr 20 15:06:40 2017 -0700
@@ -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.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -23,9 +23,16 @@
  * 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 {
     requires java.corba;
     requires jdk.compiler;
     requires jdk.javadoc;
 }
-