Uses of Interface
com.sun.jdi.StackFrame
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.
-
Uses of StackFrame in com.sun.jdi
Modifier and TypeMethodDescriptionThreadReference.frame(int index)
Returns theStackFrame
at the given index in the thread's current call stack.Modifier and TypeMethodDescriptionThreadReference.frames()
Returns a List containing eachStackFrame
in the thread's current call stack.ThreadReference.frames(int start, int length)
Returns a List containing a range ofStackFrame
mirrors from the thread's current call stack.Modifier and TypeMethodDescriptionboolean
LocalVariable.isVisible(StackFrame frame)
Determines whether this variable can be accessed from the givenStackFrame
.void
ThreadReference.popFrames(StackFrame frame)
Pop stack frames.