public interface ISuspendResume
Clients may implement this interface.
Modifier and Type | Method and Description |
---|---|
boolean |
canResume()
Returns whether this element can currently be resumed.
|
boolean |
canSuspend()
Returns whether this element can currently be suspended.
|
boolean |
isSuspended()
Returns whether this element is currently suspended.
|
void |
resume()
Causes this element to resume its execution, generating a
RESUME event. |
void |
suspend()
Causes this element to suspend its execution, generating a
SUSPEND event. |
boolean canResume()
boolean canSuspend()
boolean isSuspended()
void resume() throws DebugException
RESUME
event.
Has no effect on an element that is not suspended. This call is non-blocking.DebugException
- on failure. Reasons include:void suspend() throws DebugException
SUSPEND
event.
Has no effect on an already suspended element.
Implementations may be blocking or non-blocking.DebugException
- on failure. Reasons include:
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.