interface JDIEventHandler
| Modifier and Type | Method and Description | 
|---|---|
| void | classPrepareEvent(com.sun.jdi.event.ClassPrepareEvent event)Notification of a class prepare in the target VM. | 
| void | classUnloadEvent(com.sun.jdi.event.ClassUnloadEvent event)Notification of a class unload in the target VM. | 
| void | exceptionEvent(com.sun.jdi.event.ExceptionEvent event)Notification of an exception in the target VM. | 
| void | methodEntryEvent(com.sun.jdi.event.MethodEntryEvent event)Notification of a method invocation in the target VM. | 
| void | methodExitEvent(com.sun.jdi.event.MethodExitEvent event)Notification of a method return in the target VM. | 
| void | modificationWatchpointEvent(com.sun.jdi.event.ModificationWatchpointEvent event)Notification of a field modification in the target VM. | 
| void | monitorContendedEnteredEvent(com.sun.jdi.event.MonitorContendedEnteredEvent event)Notification that a thread in the target VM is entering a monitor after
 waiting for it to be released by another thread. | 
| void | monitorContendedEnterEvent(com.sun.jdi.event.MonitorContendedEnterEvent event)Notification that a thread in the target VM is attempting to enter a
 monitor that is already acquired by another thread. | 
| void | monitorWaitedEvent(com.sun.jdi.event.MonitorWaitedEvent event)Notification that a thread in the target VM has finished waiting on an
 monitor object. | 
| void | monitorWaitEvent(com.sun.jdi.event.MonitorWaitEvent event)Notification that a thread in the target VM is about to wait on a monitor
 object. | 
| void | printCallTree() | 
| void | stepEvent(com.sun.jdi.event.StepEvent event)Notification of step completion in the target VM. | 
| void | threadDeathEvent(com.sun.jdi.event.ThreadDeathEvent event)Notification of a completed thread in the target VM. | 
| void | threadStartEvent(com.sun.jdi.event.ThreadStartEvent event)Notification of a new running thread in the target VM. | 
| void | vmDeathEvent(com.sun.jdi.event.VMDeathEvent event)Notification of target VM termination. | 
| void | vmDisconnectEvent(com.sun.jdi.event.VMDisconnectEvent event)Notification of disconnection from target VM. | 
| void | vmStartEvent(com.sun.jdi.event.VMStartEvent event)Notification of initialization of a target VM. | 
void printCallTree()
void vmDeathEvent(com.sun.jdi.event.VMDeathEvent event)
void vmDisconnectEvent(com.sun.jdi.event.VMDisconnectEvent event)
void vmStartEvent(com.sun.jdi.event.VMStartEvent event)
void threadStartEvent(com.sun.jdi.event.ThreadStartEvent event)
void threadDeathEvent(com.sun.jdi.event.ThreadDeathEvent event)
void classPrepareEvent(com.sun.jdi.event.ClassPrepareEvent event)
void classUnloadEvent(com.sun.jdi.event.ClassUnloadEvent event)
void modificationWatchpointEvent(com.sun.jdi.event.ModificationWatchpointEvent event)
void methodEntryEvent(com.sun.jdi.event.MethodEntryEvent event)
void methodExitEvent(com.sun.jdi.event.MethodExitEvent event)
void exceptionEvent(com.sun.jdi.event.ExceptionEvent event)
void stepEvent(com.sun.jdi.event.StepEvent event)
void monitorContendedEnterEvent(com.sun.jdi.event.MonitorContendedEnterEvent event)
void monitorContendedEnteredEvent(com.sun.jdi.event.MonitorContendedEnteredEvent event)
void monitorWaitEvent(com.sun.jdi.event.MonitorWaitEvent event)
void monitorWaitedEvent(com.sun.jdi.event.MonitorWaitedEvent event)