8073713: javadoc warnings in serviceability code

Reviewed-by: mgronlun, alanb, sspitsyn
This commit is contained in:
Staffan Larsen 2015-02-24 10:56:48 +01:00
parent d1225ad485
commit 93d09edf06
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ import java.lang.management.PlatformManagedObject;
* 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 {

View File

@ -46,7 +46,7 @@ public class AttachOperationFailedException extends IOException {
* 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);

View File

@ -145,7 +145,7 @@ public interface InterfaceType extends ReferenceType {
* 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.