com.sun.squawk
Class Debugger.Event
java.lang.Object
com.sun.squawk.Debugger.Event
- Direct Known Subclasses:
- Debugger.LocationEvent
- Enclosing class:
- Debugger
public static class Debugger.Event
- extends Object
An Event instance encapsulates the details of an event that occurred
in the VM that an attached JPDA debugger client may want to be
notified about.
BREAKPOINT
public static final int BREAKPOINT
- See Also:
- Constant Field Values
CLASS_LOAD
public static final int CLASS_LOAD
- See Also:
- Constant Field Values
CLASS_PREPARE
public static final int CLASS_PREPARE
- See Also:
- Constant Field Values
CLASS_UNLOAD
public static final int CLASS_UNLOAD
- See Also:
- Constant Field Values
EXCEPTION
public static final int EXCEPTION
- See Also:
- Constant Field Values
EXCEPTION_CATCH
public static final int EXCEPTION_CATCH
- See Also:
- Constant Field Values
FIELD_ACCESS
public static final int FIELD_ACCESS
- See Also:
- Constant Field Values
FIELD_MODIFICATION
public static final int FIELD_MODIFICATION
- See Also:
- Constant Field Values
FRAME_POP
public static final int FRAME_POP
- See Also:
- Constant Field Values
METHOD_ENTRY
public static final int METHOD_ENTRY
- See Also:
- Constant Field Values
METHOD_EXIT
public static final int METHOD_EXIT
- See Also:
- Constant Field Values
SINGLE_STEP
public static final int SINGLE_STEP
- See Also:
- Constant Field Values
THREAD_DEATH
public static final int THREAD_DEATH
- See Also:
- Constant Field Values
THREAD_END
public static final int THREAD_END
- See Also:
- Constant Field Values
THREAD_START
public static final int THREAD_START
- See Also:
- Constant Field Values
USER_DEFINED
public static final int USER_DEFINED
- See Also:
- Constant Field Values
VM_DEATH
public static final int VM_DEATH
- See Also:
- Constant Field Values
VM_DISCONNECTED
public static final int VM_DISCONNECTED
- See Also:
- Constant Field Values
VM_INIT
public static final int VM_INIT
- See Also:
- Constant Field Values
VM_START
public static final int VM_START
- See Also:
- Constant Field Values
kind
public final int kind
- The JDWP event constant
describing the kind of event.
- See Also:
- Constant Field Values
object
public final Object object
- The object (if any) to which the event applies.
Debugger.Event
public Debugger.Event(int kind,
Object object)
getThread
public final Thread getThread()
- Returns:
- the thread associated with this event. (set by debugger)
getThreadID
public final Object getThreadID()
- Returns:
- the threadID associated with this event. (set by debugger).
setThread
public final void setThread(Thread thread,
Object threadID)
Copyright © 2006-2009 Sun Microsystems, Inc. All Rights Reserved.