# HG changeset patch # User mchung # Date 1492726000 25200 # Node ID 5a43cca8fc10f02848635d39d251ff4d805208f5 # Parent 928d2d931b6698e2276cede1730aa43bb432fab4 8179035: Include tool modules in unified docs Reviewed-by: lancea diff -r 928d2d931b66 -r 5a43cca8fc10 jdk/src/jdk.pack/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 { } - diff -r 928d2d931b66 -r 5a43cca8fc10 jdk/src/jdk.rmic/share/classes/module-info.java --- 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; } -