8034203: Change JavaDoc for com.sun.jdi.request.EventRequest.setEnabled(boolean val)

Added small corrections to the JavaDoc comments in the code.

Reviewed-by: sla
This commit is contained in:
Fredrik Arvidsson 2014-02-24 10:34:07 +01:00
parent 7cef8fd674
commit ae40a61ee5

View File

@ -103,7 +103,7 @@ public interface EventRequest extends Mirror {
* has been deleted.
* @throws IllegalThreadStateException if this is a StepRequest,
* <code>val</code> is <code>true</code>, and the
* thread named in the request has died.
* thread named in the request has died or is not yet started.
*/
void setEnabled(boolean val);
@ -112,7 +112,7 @@ public interface EventRequest extends Mirror {
* @throws InvalidRequestStateException if this request
* has been deleted.
* @throws IllegalThreadStateException if this is a StepRequest
* and the thread named in the request has died.
* and the thread named in the request has died or is not yet started.
*/
void enable();