Package stdlib
Interface JDIEventHandler
- All Known Implementing Classes:
Printer
interface JDIEventHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Notification of a class prepare in the target VM.void
classUnloadEvent
(ClassUnloadEvent event) Notification of a class unload in the target VM.void
exceptionEvent
(ExceptionEvent event) Notification of an exception in the target VM.void
methodEntryEvent
(MethodEntryEvent event) Notification of a method invocation in the target VM.void
methodExitEvent
(MethodExitEvent event) Notification of a method return in the target VM.void
Notification of a field modification in the target VM.void
Notification that a thread in the target VM is entering a monitor after waiting for it to be released by another thread.void
Notification that a thread in the target VM is attempting to enter a monitor that is already acquired by another thread.void
Notification that a thread in the target VM has finished waiting on an monitor object.void
monitorWaitEvent
(MonitorWaitEvent event) Notification that a thread in the target VM is about to wait on a monitor object.void
void
Notification of step completion in the target VM.void
threadDeathEvent
(ThreadDeathEvent event) Notification of a completed thread in the target VM.void
threadStartEvent
(ThreadStartEvent event) Notification of a new running thread in the target VM.void
vmDeathEvent
(VMDeathEvent event) Notification of target VM termination.void
Notification of disconnection from target VM.void
vmStartEvent
(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.
-