Uses of Interface
com.sun.jdi.Mirror
Package
Description
This is the core package of the Java Debug
Interface (JDI), it defines mirrors for values, types, and the target
VirtualMachine itself - as well bootstrapping facilities.
This package defines JDI events and event processing.
This package is used to request that a JDI
event be sent under specified conditions.
-
Uses of Mirror in com.sun.jdi
Modifier and TypeInterfaceDescriptioninterface
Provides access to an array object and its components in the target VM.interface
Provides access to the class of an array and the type of its components in the target VM.interface
The type of all primitiveboolean
values accessed in the target VM.interface
Provides access to a primitiveboolean
value in the target VM.interface
The type of all primitive byte values accessed in the target VM.interface
Provides access to a primitivebyte
value in the target VM.interface
The type of all primitive char values accessed in the target VM.interface
Provides access to a primitivechar
value in the target VM.interface
A class loader object from the target VM.interface
An instance of java.lang.Class from the target VM.interface
A mirror of a class in the target VM.interface
The type of all primitive double values accessed in the target VM.interface
Provides access to a primitivedouble
value in the target VM.interface
A class or instance variable in the target VM.interface
The type of all primitive float values accessed in the target VM.interface
Provides access to a primitivefloat
value in the target VM.interface
The type of all primitiveint
values accessed in the target VM.interface
Provides access to a primitiveint
value in the target VM.interface
A mirror of an interface in the target VM.interface
A local variable in the target VM.interface
A point within the executing code of the target VM.interface
The type of all primitivelong
values accessed in the target VM.interface
Provides access to a primitivelong
value in the target VM.interface
A static or instance method in the target VM.interface
A module in the target VM.interface
Information about a monitor owned by a thread.interface
An object that currently exists in the target VM.interface
A virtual machine which searches for classes through pathsinterface
The type associated with non-object values in a target VM.interface
The value assigned to a field or variable of primitive type in a target VM.interface
The type of an object in a target VM.interface
The type of all primitiveshort
values accessed in the target VM.interface
Provides access to a primitiveshort
value in the target VM.interface
The state of one method invocation on a thread's call stack.interface
A string object from the target VM.interface
A thread group object from the target VM.interface
A thread object from the target VM.interface
The mirror for a type in the target VM.interface
An entity declared within a user defined type (class or interface).interface
The mirror for a value in the target VM.interface
A virtual machine targeted for debugging.interface
The type of all primitivevoid
values accessed in the target VM.interface
Provides access to a primitivevoid
value in the target VM. -
Uses of Mirror in com.sun.jdi.event
Modifier and TypeInterfaceDescriptioninterface
Notification of a field access in the target VM.interface
Notification of a breakpoint in the target VM.interface
Notification of a class prepare in the target VM.interface
Notification of a class unload in the target VM.interface
An occurrence in a target VM that is of interest to a debugger.interface
Manager of incoming debugger events for a target VM.interface
SeveralEvent
objects may be created at a given time by the targetVirtualMachine
.interface
Notification of an exception in the target VM.interface
Abstract superinterface of events which have both location and thread.interface
Notification of a method invocation in the target VM.interface
Notification of a method return in the target VM.interface
Notification of a field modification in the target VM.interface
Notification that a thread in the target VM is entering a monitor after waiting for it to be released by another thread.interface
Notification that a thread in the target VM is attempting to enter a monitor that is already acquired by another thread.interface
Notification that a thread in the target VM has finished waiting on an monitor object.interface
Notification that a thread in the target VM is about to wait on a monitor object.interface
Notification of step completion in the target VM.interface
Notification of a completed thread in the target VM.interface
Notification of a new running thread in the target VM.interface
Notification of target VM termination.interface
Notification of disconnection from target VM.interface
Notification of initialization of a target VM.interface
Notification of a field triggered event encountered by a thread in the target VM. -
Uses of Mirror in com.sun.jdi.request
Modifier and TypeInterfaceDescriptioninterface
Request for notification when the contents of a field are accessed in the target VM.interface
Identifies aLocation
in the target VM at which execution should be stopped.interface
Request for notification when a class is prepared in the target VM.interface
Request for notification when a class is unloaded in the target VM.interface
Represents a request for notification of an event.interface
Manages the creation and deletion ofEventRequest
s.interface
Request for notification when an exception occurs in the target VM.interface
Request for notification when a method is invoked in the target VM.interface
Request for notification when a method returns in the target VM.interface
Request for notification when a field is set.interface
Request for notification of a thread in the target VM entering a monitor after waiting for it to be released by another thread.interface
Request for notification of a thread in the target VM attempting to enter a monitor already acquired by another thread.interface
Request for notification when a thread in the target VM has finished waiting on a monitor object.interface
Request for notification when a thread in the target VM is about to wait on a monitor object.interface
Request for notification when a step occurs in the target VM.interface
Request for notification when a thread terminates in the target VM.interface
Request for notification when a thread starts execution in the target VM.interface
Request for notification when the target VM terminates.interface
Identifies aField
in the target VM being watched.