Uses of Interface
com.sun.jdi.LocalVariable
-
Packages that use LocalVariable 软件包 描述 com.sun.jdi 这是Java调试接口(JDI)的核心包,它定义了值,类型和目标VirtualMachine本身的镜像以及自举设备。 -
-
Uses of LocalVariable in com.sun.jdi
Methods in com.sun.jdi that return LocalVariable Modifier and Type 方法 描述 LocalVariable
StackFrame. visibleVariableByName(String name)
找到匹配给定名称的LocalVariable
,并在当前帧位置可见。Methods in com.sun.jdi that return types with arguments of type LocalVariable Modifier and Type 方法 描述 List<LocalVariable>
Method. arguments()
返回一个列表,其中包含声明为此方法参数的每个LocalVariable
。Map<LocalVariable,Value>
StackFrame. getValues(List<? extends LocalVariable> variables)
返回此框架中多个局部变量的值。List<LocalVariable>
Method. variables()
返回一个包含在此方法中声明的每个LocalVariable
的列表。List<LocalVariable>
Method. variablesByName(String name)
在此方法中返回包含给定名称的每个LocalVariable
的列表。List<LocalVariable>
StackFrame. visibleVariables()
返回一个包含可以从此框架的位置访问的每个LocalVariable
的列表。Methods in com.sun.jdi with parameters of type LocalVariable Modifier and Type 方法 描述 Value
StackFrame. getValue(LocalVariable variable)
获取此框架中的LocalVariable
的Value
。void
StackFrame. setValue(LocalVariable variable, Value value)
在此框架中设置LocalVariable
的Value
。Method parameters in com.sun.jdi with type arguments of type LocalVariable Modifier and Type 方法 描述 Map<LocalVariable,Value>
StackFrame. getValues(List<? extends LocalVariable> variables)
返回此框架中多个局部变量的值。
-