--- old/src/jdk.jdi/share/classes/com/sun/jdi/JDIPermission.java 2015-04-24 19:20:47.575879547 +0400 +++ new/src/jdk.jdi/share/classes/com/sun/jdi/JDIPermission.java 2015-04-24 19:20:47.343879547 +0400 @@ -26,20 +26,20 @@ package com.sun.jdi; /** - * The JDIPermission class represents access rights to - * the VirtualMachineManager. This is the permission + * The {@code JDIPermission} class represents access rights to + * the {@code VirtualMachineManager}. This is the permission * which the SecurityManager will check when code that is running with * a SecurityManager requests access to the VirtualMachineManager, as * defined in the Java Debug Interface (JDI) for the Java platform. *

- * A JDIPermission object contains a name (also referred + * A {@code JDIPermission} object contains a name (also referred * to as a "target name") but no actions list; you either have the * named permission or you don't. *

* The following table provides a summary description of what the * permission allows, and discusses the risks of granting code the * permission. - *

+ * * * @@ -51,10 +51,10 @@ * * * * * @@ -82,8 +82,8 @@ public final class JDIPermission extends java.security.BasicPermission { private static final long serialVersionUID = -6988461416938786271L; /** - * The JDIPermission class represents access rights to the - * VirtualMachineManager + * The {@code JDIPermission} class represents access rights to the + * {@code VirtualMachineManager} * @param name Permission name. Must be "virtualMachineManager". * @throws IllegalArgumentException if the name argument is invalid. */
virtualMachineManagerAbility to inspect and modify the JDI objects in the - * VirtualMachineManager + * {@code VirtualMachineManager} * This allows an attacker to control the - * VirtualMachineManager and cause the system to + * {@code VirtualMachineManager} and cause the system to * misbehave. *