Package stdlib
Interface JDIEventHandler
- All Known Implementing Classes:
Printer
interface JDIEventHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoidNotification of a class prepare in the target VM.voidclassUnloadEvent(ClassUnloadEvent event) Notification of a class unload in the target VM.voidexceptionEvent(ExceptionEvent event) Notification of an exception in the target VM.voidmethodEntryEvent(MethodEntryEvent event) Notification of a method invocation in the target VM.voidmethodExitEvent(MethodExitEvent event) Notification of a method return in the target VM.voidNotification of a field modification in the target VM.voidNotification that a thread in the target VM is entering a monitor after waiting for it to be released by another thread.voidNotification that a thread in the target VM is attempting to enter a monitor that is already acquired by another thread.voidNotification that a thread in the target VM has finished waiting on an monitor object.voidmonitorWaitEvent(MonitorWaitEvent event) Notification that a thread in the target VM is about to wait on a monitor object.voidvoidNotification of step completion in the target VM.voidthreadDeathEvent(ThreadDeathEvent event) Notification of a completed thread in the target VM.voidthreadStartEvent(ThreadStartEvent event) Notification of a new running thread in the target VM.voidvmDeathEvent(VMDeathEvent event) Notification of target VM termination.voidNotification of disconnection from target VM.voidvmStartEvent(VMStartEvent event) Notification of initialization of a target VM.
-
Method Details
-
printCallTree
void printCallTree() -
vmDeathEvent
Notification of target VM termination. -
vmDisconnectEvent
Notification of disconnection from target VM. -
vmStartEvent
Notification of initialization of a target VM. -
threadStartEvent
Notification of a new running thread in the target VM. -
threadDeathEvent
Notification of a completed thread in the target VM. -
classPrepareEvent
Notification of a class prepare in the target VM. -
classUnloadEvent
Notification of a class unload in the target VM. -
modificationWatchpointEvent
Notification of a field modification in the target VM. -
methodEntryEvent
Notification of a method invocation in the target VM. -
methodExitEvent
Notification of a method return in the target VM. -
exceptionEvent
Notification of an exception in the target VM. -
stepEvent
Notification of step completion in the target VM. -
monitorContendedEnterEvent
Notification that a thread in the target VM is attempting to enter a monitor that is already acquired by another thread. -
monitorContendedEnteredEvent
Notification that a thread in the target VM is entering a monitor after waiting for it to be released by another thread. -
monitorWaitEvent
Notification that a thread in the target VM is about to wait on a monitor object. -
monitorWaitedEvent
Notification that a thread in the target VM has finished waiting on an monitor object.
-