public class DebuggerEvent
extends java.util.EventObject
Debugger events are provided for notification purposes ONLY;
The debugger will automatically handle debugger events
internally so that the debugger works properly regardless of
whether a program is receiving these events or not.
This event is generated by a debugger when it is starting, stopping,
resuming, or finished. The event is passed to every DebuggerListener
object that registered to receive such events using the Debugger's
addDebuggerListener
method. Each such listener object
gets this DebuggerEvent
when a debugger event occurs.
DebuggerAdapter
,
DebuggerListener
,
Serialized FormModifier and Type | Field and Description |
---|---|
static int |
DEBUGGER_FINISHED
The debugger finished event.
|
static int |
DEBUGGER_RESUMING
The debugger resuming event.
|
static int |
DEBUGGER_STARTING
The debugger starting event.
|
static int |
DEBUGGER_STOPPING
The debugger stopping event.
|
Constructor and Description |
---|
DebuggerEvent(java.lang.Object source,
int eventType) |
Modifier and Type | Method and Description |
---|---|
int |
getEventType()
Returns the event type.
|
java.lang.String |
toString() |
public static final int DEBUGGER_STARTING
public static final int DEBUGGER_STOPPING
public static final int DEBUGGER_RESUMING
public static final int DEBUGGER_FINISHED