8073713: javadoc warnings in serviceability code
authorsla
Tue, 24 Feb 2015 10:56:48 +0100
changeset 29102 fa8bbdfd8750
parent 29101 55f7a91aaa32
child 29103 1dbde34ad64c
8073713: javadoc warnings in serviceability code Reviewed-by: mgronlun, alanb, sspitsyn
jdk/src/java.management/share/classes/com/sun/management/HotSpotDiagnosticMXBean.java
jdk/src/jdk.attach/share/classes/com/sun/tools/attach/AttachOperationFailedException.java
jdk/src/jdk.jdi/share/classes/com/sun/jdi/InterfaceType.java
--- a/jdk/src/java.management/share/classes/com/sun/management/HotSpotDiagnosticMXBean.java	Tue Feb 24 09:46:29 2015 +0100
+++ b/jdk/src/java.management/share/classes/com/sun/management/HotSpotDiagnosticMXBean.java	Tue Feb 24 10:56:48 2015 +0100
@@ -45,7 +45,7 @@
  * All methods throw a {@code NullPointerException} if any input argument is
  * {@code null} unless it's stated otherwise.
  *
- * @see ManagementFactory#getPlatformMXBeans(Class)
+ * @see java.lang.management.ManagementFactory#getPlatformMXBeans(Class)
  */
 @jdk.Exported
 public interface HotSpotDiagnosticMXBean extends PlatformManagedObject {
--- a/jdk/src/jdk.attach/share/classes/com/sun/tools/attach/AttachOperationFailedException.java	Tue Feb 24 09:46:29 2015 +0100
+++ b/jdk/src/jdk.attach/share/classes/com/sun/tools/attach/AttachOperationFailedException.java	Tue Feb 24 10:56:48 2015 +0100
@@ -46,7 +46,7 @@
      * Constructs an <code>AttachOperationFailedException</code> with
      * the specified detail message.
      *
-     * @param   s   the detail message.
+     * @param message the detail message.
      */
     public AttachOperationFailedException(String message) {
         super(message);
--- a/jdk/src/jdk.jdi/share/classes/com/sun/jdi/InterfaceType.java	Tue Feb 24 09:46:29 2015 +0100
+++ b/jdk/src/jdk.jdi/share/classes/com/sun/jdi/InterfaceType.java	Tue Feb 24 10:56:48 2015 +0100
@@ -145,7 +145,7 @@
      * not be done from the client's event handler thread.
      * <p>
      * The resumption of other threads during the invocation can be prevented
-     * by specifying the {@link #INVOKE_SINGLE_THREADED}
+     * by specifying the {@link ClassType#INVOKE_SINGLE_THREADED}
      * bit flag in the <code>options</code> argument; however,
      * there is no protection against or recovery from the deadlocks
      * described above, so this option should be used with great caution.