Module jdk.jdi
Package com.sun.jdi.event
package com.sun.jdi.event
This package defines JDI events and event processing.
An
Event
is always a member of an
EventSet
, which
is retrieved from the EventQueue
.
Examples of Events include
"breakpoints events"
,
"thread creation events"
and
"virtual machine death event"
.
With the exception
of termination events, all events received must be requested with an
"EventRequest"
. The
com.sun.jdi.request
package defines event requests and event
request management.
Methods may be added to the interfaces in the JDI packages in future releases. Existing packages may be renamed if the JDI becomes a standard extension.
-
ClassDescriptionNotification of a field access in the target VM.Notification of a breakpoint in the target VM.Notification of a class prepare in the target VM.Notification of a class unload in the target VM.An occurrence in a target VM that is of interest to a debugger.EventIterators are unmodifiable.Manager of incoming debugger events for a target VM.Several
Event
objects may be created at a given time by the targetVirtualMachine
.Notification of an exception in the target VM.Abstract superinterface of events which have both location and thread.Notification of a method invocation in the target VM.Notification of a method return in the target VM.Notification of a field modification in the target VM.Notification that a thread in the target VM is entering a monitor after waiting for it to be released by another thread.Notification that a thread in the target VM is attempting to enter a monitor that is already acquired by another thread.Notification that a thread in the target VM has finished waiting on an monitor object.Notification that a thread in the target VM is about to wait on a monitor object.Notification of step completion in the target VM.Notification of a completed thread in the target VM.Notification of a new running thread in the target VM.Notification of target VM termination.Notification of disconnection from target VM.Notification of initialization of a target VM.Notification of a field triggered event encountered by a thread in the target VM.