--- old/src/jdk.jdi/share/classes/module-info.java 2017-04-20 09:49:56.407755444 +0200 +++ new/src/jdk.jdi/share/classes/module-info.java 2017-04-20 09:49:56.155760262 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2016, 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 @@ -24,7 +24,84 @@ */ /** - * Defines the Java Debugger Interface. + * Defines the Java Debug Interface. + *

+ * The Java™ Debug Interface (JDI) is a high level Java API providing + * information useful for debuggers and similar systems needing access to the + * running state of a (usually remote) virtual machine. + *

+ * JDI provides introspective access to a running virtual machine's state, + * Class, Array, Interface, and primitive types, and instances of those types. + *

+ * JDI also provides explicit control over a virtual machine's execution. + * The ability to suspend and resume threads, and to set breakpoints, + * watchpoints, etc. Notification of exceptions, class loading, thread + * creation, etc. The ability to inspect a suspended thread's state, local + * variables, stack backtrace, etc. + *

+ * JDI is the highest-layer of the Java Platform Debugger Architecture (JPDA). + * For more information on the Java Platform Debugger Architecture, see the Java + * Platform Debugger Architecture documentation for this release and the Java Platform Debugger Architecture + * website. + *

+ * Global Exceptions: + *

+ * This section documents exceptions which apply to the entire API and are thus + * not documented on individual methods. + *

+ *

+ * {@link com.sun.jdi.VMMismatchException} + *

+ * Any method on a {@link com.sun.jdi.Mirror} that takes a + * {@code Mirror} as an parameter directly or indirectly (e.g., as a + * element in a {@code List}) will throw {@link + * com.sun.jdi.VMMismatchException} if the mirrors are from different virtual + * machines. + *

+ * {@link java.lang.NullPointerException} + *

+ * Any method which takes a {@link java.lang.Object} as an parameter will + * throw {@link java.lang.NullPointerException} if null is passed directly or + * indirectly -- unless null is explicitly mentioned as a valid parameter. + *

+ * NOTE: The exceptions below may be thrown whenever the specified conditions + * are met but a guarantee that they are thrown only exists when a valid result + * cannot be returned. + *
+ *

+ * {@link com.sun.jdi.VMDisconnectedException} + *

+ * Any method on {@link com.sun.jdi.ObjectReference}, {@link + * com.sun.jdi.ReferenceType}, {@link com.sun.jdi.request.EventRequest}, + * {@link com.sun.jdi.StackFrame}, or {@link com.sun.jdi.VirtualMachine} or + * which takes one of these directly or indirectly as an parameter may throw + * {@link com.sun.jdi.VMDisconnectedException} if the target VM is + * disconnected and the {@link com.sun.jdi.event.VMDisconnectEvent} has been + * or is available to be read from the {@link com.sun.jdi.event.EventQueue}. + *

+ * {@link com.sun.jdi.VMOutOfMemoryException} + *

+ * Any method on {@link com.sun.jdi.ObjectReference}, {@link + * com.sun.jdi.ReferenceType}, {@link com.sun.jdi.request.EventRequest}, + * {@link com.sun.jdi.StackFrame}, or {@link com.sun.jdi.VirtualMachine} or + * which takes one of these directly or indirectly as an parameter may throw + * {@link com.sun.jdi.VMOutOfMemoryException} if the target VM has run out of + * memory. + *

+ * {@link com.sun.jdi.ObjectCollectedException} + *

+ * Any method on {@link com.sun.jdi.ObjectReference} or which directly or + * indirectly takes {@code ObjectReference} as parameter may throw + * {@link com.sun.jdi.ObjectCollectedException} if the mirrored object has + * been garbage collected. + *

+ * Any method on {@link com.sun.jdi.ReferenceType} or which directly or + * indirectly takes {@code ReferenceType} as parameter may throw {@link + * com.sun.jdi.ObjectCollectedException} if the mirrored type has been + * unloaded. + *

* * @moduleGraph * @since 9 --- old/src/java.management/share/classes/mgmt-overview.html 2017-04-20 09:49:56.995744203 +0200 +++ /dev/null 2017-04-05 08:59:37.473816279 +0200 @@ -1,38 +0,0 @@ - - - - Monitoring and Management - - - - - - - - - - --- old/src/java.security.jgss/share/classes/jgss-overview.html 2017-04-20 09:49:57.411736252 +0200 +++ /dev/null 2017-04-05 08:59:37.473816279 +0200 @@ -1,9 +0,0 @@ - - - - Java(tm) Authentication and Authorization Classes - - - This package contains GSS-API utilities for using in conjunction with Sun Microsystem's implementation of Java GSS-API. - - --- old/src/jdk.jdi/share/classes/jdi-overview.html 2017-04-20 09:49:57.835728149 +0200 +++ /dev/null 2017-04-05 08:59:37.473816279 +0200 @@ -1,86 +0,0 @@ - - - - Java™ Debug Interface - - - The Java™ Debug Interface (JDI) is a high level Java -API providing information useful for debuggers and similar -systems needing access to the running state of a (usually remote) -virtual machine. -

- The JDI provides introspective -access to a running virtual machine's state, Class, Array, -Interface, and primitive types, and instances of those -types. -

-The JDI also provides explicit control over -a virtual machine's execution. The ability to suspend -and resume threads, and to set breakpoints, watchpoints, ... -Notification -of exceptions, class loading, thread creation... -The ability to inspect a suspended thread's state, -local variables, stack backtrace... -

-JDI is the highest-layer of the Java Platform Debugger Architecture (JPDA). -For more information on the Java Platform Debugger Architecture, see the - -Java Platform Debugger Architecture documentation -for this release and the -Java Platform Debugger Architecture website. -

-Global Exceptions: -

-This section documents exceptions which apply to the entire API and are thus -not documented on individual methods. - -

-

- {@link com.sun.jdi.VMMismatchException} -

- Any method on a {@link com.sun.jdi.Mirror} that takes a Mirror as an - parameter directly or indirectly (e.g., as a element in a List) will - throw {@link com.sun.jdi.VMMismatchException} if the mirrors are from different - virtual machines. -

- {@link java.lang.NullPointerException} -

- Any method which takes a {@link java.lang.Object} as an parameter will throw - {@link java.lang.NullPointerException} if null is passed directly or indirectly - -- unless null is explicitly mentioned as a valid parameter. -

- NOTE: The exceptions below may be thrown whenever the specified - conditions are met but a guarantee that they are thrown only - exists when a valid result cannot be returned. -
-

- {@link com.sun.jdi.VMDisconnectedException} -

- Any method on {@link com.sun.jdi.ObjectReference}, {@link com.sun.jdi.ReferenceType}, - {@link com.sun.jdi.request.EventRequest}, {@link com.sun.jdi.StackFrame}, or - {@link com.sun.jdi.VirtualMachine} or which takes one of these directly or indirectly - as an parameter may throw {@link com.sun.jdi.VMDisconnectedException} if the target VM - is disconnected and the {@link com.sun.jdi.event.VMDisconnectEvent} has been or is available - to be read from the {@link com.sun.jdi.event.EventQueue}. -

- {@link com.sun.jdi.VMOutOfMemoryException} -

- Any method on {@link com.sun.jdi.ObjectReference}, {@link com.sun.jdi.ReferenceType}, - {@link com.sun.jdi.request.EventRequest}, {@link com.sun.jdi.StackFrame}, or - {@link com.sun.jdi.VirtualMachine} or which takes one of these directly or indirectly - as an parameter may throw {@link com.sun.jdi.VMOutOfMemoryException} if the target - VM has run out of memory. -

- {@link com.sun.jdi.ObjectCollectedException} -

- Any method on {@link com.sun.jdi.ObjectReference} or which directly or indirectly takes - ObjectReference as parameter may throw {@link com.sun.jdi.ObjectCollectedException} - if the mirrored object has been garbage collected. -

- Any method on {@link com.sun.jdi.ReferenceType} or which directly or indirectly takes - ReferenceType as parameter may throw {@link com.sun.jdi.ObjectCollectedException} - if the mirrored type has been unloaded. - -

- - --- old/src/jdk.security.auth/share/classes/jaas-overview.html 2017-04-20 09:49:58.255720123 +0200 +++ /dev/null 2017-04-05 08:59:37.473816279 +0200 @@ -1,9 +0,0 @@ - - - - Java(tm) Authentication and Authorization Classes - - - This package contains Sun's implementation of the javax.security.auth.* interfaces and authentication modules. - -