Java Debug Interface

Uses of Class
com.sun.jdi.IncompatibleThreadStateException

Packages that use IncompatibleThreadStateException
com.sun.jdi 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. 
 

Uses of IncompatibleThreadStateException in com.sun.jdi
 

Methods in com.sun.jdi that throw IncompatibleThreadStateException
 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.
 int ThreadReference.frameCount()
          Returns the number of stack frames in the thread's current call stack.
 List ThreadReference.frames()
          Returns a List containing each StackFrame in the thread's current call stack.
 StackFrame ThreadReference.frame(int index)
          Returns the StackFrame at the given index in the thread's current call stack.
 List ThreadReference.frames(int start, int length)
          Returns a List containing a range of StackFrame mirrors from the thread's current call stack.
 List ThreadReference.ownedMonitors()
          Returns a List containing an ObjectReference for each monitor owned by the thread.
 ObjectReference ThreadReference.currentContendedMonitor()
          Returns an ObjectReference for the monitor, if any, for which this thread is currently waiting.
 void ThreadReference.popFrames(StackFrame frame)
          Pop stack frames.
 Value ObjectReference.invokeMethod(ThreadReference thread, Method method, List arguments, int options)
          Invokes the specified Method on this object in the target VM.
 List ObjectReference.waitingThreads()
          Returns a List containing a ThreadReference for each thread currently waiting for this object's monitor.
 ThreadReference ObjectReference.owningThread()
          Returns an ThreadReference for the thread, if any, which currently owns this object's monitor.
 int ObjectReference.entryCount()
          Returns the number times this object's monitor has been entered by the current owning thread.
 


Java Debug Interface