Java Debug Interface

Uses of Interface
com.sun.jdi.ThreadReference

Packages that use ThreadReference
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. 
com.sun.jdi.request This package is used to request that a JDI event be sent under specified conditions. 
 

Uses of ThreadReference in com.sun.jdi
 

Methods in com.sun.jdi that return ThreadReference
 ThreadReference StackFrame.thread()
          Returns the thread under which this frame's method is running.
 ThreadReference ObjectReference.owningThread()
          Returns an ThreadReference for the thread, if any, which currently owns this object's monitor.
 

Methods in com.sun.jdi with parameters of type ThreadReference
 Value ObjectReference.invokeMethod(ThreadReference thread, Method method, List arguments, int options)
          Invokes the specified Method on this object in the target VM.
 Value ClassType.invokeMethod(ThreadReference thread, Method method, List arguments, int options)
          Invokes the specified static Method in the target VM.
 ObjectReference ClassType.newInstance(ThreadReference thread, Method method, List arguments, int options)
          Constructs a new instance of this type, using the given constructor Method in the target VM.
 

Uses of ThreadReference in com.sun.jdi.event
 

Methods in com.sun.jdi.event that return ThreadReference
 ThreadReference LocatableEvent.thread()
          Returns the thread in which this event has occurred.
 ThreadReference ThreadDeathEvent.thread()
          Returns the thread which is terminating.
 ThreadReference ClassPrepareEvent.thread()
          Returns the thread in which this event has occurred.
 ThreadReference ThreadStartEvent.thread()
          Returns the thread which has started.
 ThreadReference VMStartEvent.thread()
          Returns the initial thread of the VM which has started.
 

Uses of ThreadReference in com.sun.jdi.request
 

Methods in com.sun.jdi.request that return ThreadReference
 ThreadReference StepRequest.thread()
           
 

Methods in com.sun.jdi.request with parameters of type ThreadReference
 StepRequest EventRequestManager.createStepRequest(ThreadReference thread, int size, int depth)
          Creates a new disabled StepRequest.
 void BreakpointRequest.addThreadFilter(ThreadReference thread)
          Restricts the events generated by this request to those in the given thread.
 void ThreadDeathRequest.addThreadFilter(ThreadReference thread)
          Restricts the event generated by this request to the ending of this thread.
 void MethodExitRequest.addThreadFilter(ThreadReference thread)
          Restricts the events generated by this request to those in this thread.
 void ExceptionRequest.addThreadFilter(ThreadReference thread)
          Restricts the events generated by this request to those in the given thread.
 void WatchpointRequest.addThreadFilter(ThreadReference thread)
          Restricts the events generated by this request to those in this thread.
 void MethodEntryRequest.addThreadFilter(ThreadReference thread)
          Restricts the events generated by this request to those in this thread.
 void ThreadStartRequest.addThreadFilter(ThreadReference thread)
          Restricts the event generated by this request to the starting of this thread.
 


Java Debug Interface