Uses of Interface
com.sun.jdi.StackFrame
-
Packages that use StackFrame 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像以及自举设备。 -
-
Uses of StackFrame in com.sun.jdi
Methods in com.sun.jdi that return StackFrame Modifier and Type 方法 描述 StackFrame
ThreadReference. frame(int index)
返回线程当前调用堆栈中给定索引的StackFrame
。Methods in com.sun.jdi that return types with arguments of type StackFrame Modifier and Type 方法 描述 List<StackFrame>
ThreadReference. frames()
返回包含线程当前调用堆栈中的每个StackFrame
的列表。List<StackFrame>
ThreadReference. frames(int start, int length)
从线程的当前调用堆栈返回一个包含一个范围为StackFrame
个镜像的列表。Methods in com.sun.jdi with parameters of type StackFrame Modifier and Type 方法 描述 boolean
LocalVariable. isVisible(StackFrame frame)
确定是否可以从给定的StackFrame
访问此变量。void
ThreadReference. popFrames(StackFrame frame)
弹出框架。
-