| Modifier and Type | Field and Description |
|---|---|
static int |
DEFAULT_PORT |
| Modifier and Type | Method and Description |
|---|---|
void |
addBreakpoint(Breakpoint breakpoint)
Adds a breakpoint
|
Object |
addDebuggerListener(DebuggerListener listener)
Adds a listener for debugger events.
|
List |
getBreakpoints()
Retrieves a list of all
Breakpoint objects. |
List |
getBreakpoints(String templateName)
Retrieves a list of all
Breakpoint objects for the specified
template. |
Collection |
getSuspendedEnvironments()
Retrieves a collection of all
DebuggedEnvironment objects that
are currently suspended. |
void |
removeBreakpoint(Breakpoint breakpoint)
Removes a single breakpoint
|
void |
removeBreakpoints()
Removes all breakpoints
|
void |
removeBreakpoints(String templateName)
Removes all breakpoints for a specific template
|
void |
removeDebuggerListener(Object id)
Removes a previously added debugger listener.
|
static final int DEFAULT_PORT
void addBreakpoint(Breakpoint breakpoint) throws RemoteException
breakpoint - the breakpoint to addRemoteExceptionvoid removeBreakpoint(Breakpoint breakpoint) throws RemoteException
breakpoint - the breakpoint to removeRemoteExceptionvoid removeBreakpoints(String templateName) throws RemoteException
RemoteExceptionvoid removeBreakpoints()
throws RemoteException
RemoteExceptionList getBreakpoints() throws RemoteException
Breakpoint objects.RemoteExceptionList getBreakpoints(String templateName) throws RemoteException
Breakpoint objects for the specified
template.RemoteExceptionCollection getSuspendedEnvironments() throws RemoteException
DebuggedEnvironment objects that
are currently suspended.RemoteExceptionObject addDebuggerListener(DebuggerListener listener) throws RemoteException
removeDebuggerListener(Object) to remove this listener.RemoteExceptionvoid removeDebuggerListener(Object id) throws RemoteException
id - the identification token for the listener that was returned
from a prior call to addDebuggerListener(DebuggerListener).RemoteException