Uses of Interface
com.sun.jdi.ObjectReference
Packages that use ObjectReference
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 ObjectReference in com.sun.jdi
Subinterfaces of ObjectReference in com.sun.jdiModifier and TypeInterfaceDescriptioninterface
Provides access to an array object and its components 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 module in the target VM.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.Methods in com.sun.jdi that return ObjectReferenceModifier and TypeMethodDescriptionThreadReference.currentContendedMonitor()
Returns anObjectReference
for the monitor, if any, for which this thread is currently waiting.InvocationException.exception()
MonitorInfo.monitor()
Returns theObjectReference
object for the monitor.ClassType.newInstance
(ThreadReference thread, Method method, List<? extends Value> arguments, int options) Constructs a new instance of this type, using the given constructorMethod
in the target VM.StackFrame.thisObject()
Returns the value of 'this' for the current frame.Methods in com.sun.jdi that return types with arguments of type ObjectReferenceModifier and TypeMethodDescriptionReferenceType.instances
(long maxInstances) Returns instances of this ReferenceType.ThreadReference.ownedMonitors()
Returns a List containing anObjectReference
for each monitor owned by the thread.ObjectReference.referringObjects
(long maxReferrers) Returns objects that directly reference this object.Methods in com.sun.jdi with parameters of type ObjectReferenceModifier and TypeMethodDescriptionvoid
ThreadReference.stop
(ObjectReference throwable) Stops this thread with an asynchronous exception.Constructors in com.sun.jdi with parameters of type ObjectReference -
Uses of ObjectReference in com.sun.jdi.event
Methods in com.sun.jdi.event that return ObjectReferenceModifier and TypeMethodDescriptionExceptionEvent.exception()
Gets the thrown exception object.MonitorContendedEnteredEvent.monitor()
Returns the monitor that was entered.MonitorContendedEnterEvent.monitor()
Returns the method that was entered.MonitorWaitedEvent.monitor()
Returns the monitor object this thread waited on.MonitorWaitEvent.monitor()
Returns the monitor object that the thread about to wait.WatchpointEvent.object()
Returns the object whose field is about to be accessed/modified. -
Uses of ObjectReference in com.sun.jdi.request
Methods in com.sun.jdi.request with parameters of type ObjectReferenceModifier and TypeMethodDescriptionvoid
BreakpointRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance is the object specified.void
ExceptionRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
MethodEntryRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
MethodExitRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
MonitorContendedEnteredRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
MonitorContendedEnterRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
MonitorWaitedRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
MonitorWaitRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
StepRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.void
WatchpointRequest.addInstanceFilter
(ObjectReference instance) Restricts the events generated by this request to those in which the currently executing instance ("this") is the object specified.