--- old/src/jdk.jdi/share/classes/com/sun/jdi/request/EventRequest.java 2015-04-24 19:20:53.875879541 +0400 +++ new/src/jdk.jdi/share/classes/com/sun/jdi/request/EventRequest.java 2015-04-24 19:20:53.639879542 +0400 @@ -61,14 +61,14 @@ * Filters can dramatically improve debugger performance by reducing the * amount of event traffic sent from the target VM to the debugger VM. *

- * Any method on EventRequest which - * takes EventRequest as an parameter may throw + * Any method on {@code EventRequest} which + * takes {@code EventRequest} 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}. *

- * Any method on EventRequest which - * takes EventRequest as an parameter may throw + * Any method on {@code EventRequest} which + * takes {@code EventRequest} as an parameter may throw * {@link com.sun.jdi.VMOutOfMemoryException} if the target VM has run out of memory. * * @see com.sun.jdi.event.BreakpointEvent @@ -84,8 +84,8 @@ /** * Determines if this event request is currently enabled. * - * @return true if enabled; - * false otherwise. + * @return {@code true} if enabled; + * {@code false} otherwise. */ boolean isEnabled(); @@ -97,18 +97,18 @@ * and are included in event request lists such as * {@link EventRequestManager#breakpointRequests()}. * - * @param val true if the event request is to be enabled; - * false otherwise. + * @param val {@code true} if the event request is to be enabled; + * {@code false} otherwise. * @throws InvalidRequestStateException if this request * has been deleted. * @throws IllegalThreadStateException if this is a StepRequest, - * val is true, and the + * {@code val} is {@code true}, and the * thread named in the request has died or is not yet started. */ void setEnabled(boolean val); /** - * Same as {@link #setEnabled setEnabled(true)}. + * Same as {@link #setEnabled setEnabled(true)}. * @throws InvalidRequestStateException if this request * has been deleted. * @throws IllegalThreadStateException if this is a StepRequest @@ -117,7 +117,7 @@ void enable(); /** - * Same as {@link #setEnabled setEnabled(false)}. + * Same as {@link #setEnabled setEnabled(false)}. * @throws InvalidRequestStateException if this request * has been deleted. */ @@ -126,7 +126,7 @@ /** * Limit the requested event to be reported at most once after a * given number of occurrences. The event is not reported - * the first count - 1 times this filter is reached. + * the first {@code count - 1} times this filter is reached. * To request a one-off event, call this method with a count of 1. *

* Once the count reaches 0, any subsequent filters in this request @@ -139,7 +139,7 @@ * @throws InvalidRequestStateException if this request is currently * enabled or has been deleted. * Filters may be added only to disabled requests. - * @throws IllegalArgumentException if count + * @throws IllegalArgumentException if {@code count} * is less than one. */ void addCountFilter(int count); @@ -189,7 +189,7 @@ * These client-set properties are not used internally * by the JDI. *

- * The get/putProperty methods provide access to + * The {@code get/putProperty} methods provide access to * a small per-instance map. This is not to be confused * with {@link java.util.Properties}. *