Java Debug Interface

Uses of Interface
com.sun.jdi.ObjectReference

Packages that use ObjectReference
com.sun.jdi This is the core package of the Java Debugging Interface (JDI), it defines mirrors for values, types, and the target VirtualMachine itself - as well bootstrapping facilities. 
com.sun.jdi.event This package defines JDI events and event processing. 
 

Uses of ObjectReference in com.sun.jdi
 

Subinterfaces of ObjectReference in com.sun.jdi
 interface ArrayReference
          Provides access to an array object and its components in the target VM.
 interface ClassLoaderReference
          A class loader object from the target VM.
 interface ClassObjectReference
          An instance of java.lang.Class from the target VM.
 interface StringReference
          A string object from the target VM.
 interface ThreadGroupReference
          A thread group object from the target VM.
 interface ThreadReference
          A thread object from the target VM.
 

Methods in com.sun.jdi that return ObjectReference
 ObjectReference ClassType.newInstance(ThreadReference thread, Method method, java.util.List arguments, int options)
          Constructs a new instance of this type, using the given constructor Method in the target VM.
 ObjectReference StackFrame.thisObject()
          Returns the value of 'this' for the current frame.
 ObjectReference ThreadReference.currentContendedMonitor()
          Returns an ObjectReference for the monitor, if any, for which this thread is currently waiting.
 ObjectReference InvocationException.exception()
           
 

Methods in com.sun.jdi with parameters of type ObjectReference
 void ThreadReference.stop(ObjectReference throwable)
          Stops this thread with an asynchronous exception.
 

Constructors in com.sun.jdi with parameters of type ObjectReference
InvocationException.InvocationException(ObjectReference exception)
           
 

Uses of ObjectReference in com.sun.jdi.event
 

Methods in com.sun.jdi.event that return ObjectReference
 ObjectReference ExceptionEvent.exception()
          Gets the thrown exception object.
 ObjectReference WatchpointEvent.object()
          Returns the object whose field is about to be accessed/modified.
 


Java Debug Interface