jde.debugger
Interface EventSetListener
- public interface EventSetListener
This interface is implemented by objects interested in EventSets
from the debugger
Created: 3/18/03 6:02pm.
- Since:
- 2.3.2
- Version:
- $Revision: 1.1 $
- Author:
- Troy Daniels
- See Also:
EventSetEvent
eventSetReceived
public void eventSetReceived(EventSetEvent evt)
- Called whenever an JDE EventSet is received. Intended for
things like conditional breakpoints, where we may want to
suspend the debugger.
- Parameters:
evt
- An event containing the EventSet and other
information
debuggerSuspended
public void debuggerSuspended(EventSetEvent evt)
- Called whenever an JDE EventSet is received and we suspend the
debugger. Intended for things like displays, where we want to
update whenever the debugger is suspended.
- Parameters:
evt
- An event containing the EventSet and other
information
debuggerResumed
public void debuggerResumed(EventSetEvent evt)
- Called whenever an JDE EventSet is received and we are about
to resume the debugger.
- Parameters:
evt
- An event containing the EventSet and other
information