Uses of Interface
com.sun.jdi.LocalVariable
Packages that use LocalVariable
包
描述
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 LocalVariable in com.sun.jdi
Methods in com.sun.jdi that return LocalVariable修饰符和类方法描述StackFrame.visibleVariableByName(String name) Finds aLocalVariablethat matches the given name and is visible at the current frame location.Methods in com.sun.jdi that return types with arguments of type LocalVariable修饰符和类方法描述Method.arguments()Returns a list containing eachLocalVariablethat is declared as an argument of this method.StackFrame.getValues(List<? extends LocalVariable> variables) Returns the values of multiple local variables in this frame.Method.variables()Returns a list containing eachLocalVariabledeclared in this method.Method.variablesByName(String name) Returns a list containing eachLocalVariableof a given name in this method.StackFrame.visibleVariables()Returns a list containing eachLocalVariablethat can be accessed from this frame's location.Methods in com.sun.jdi with parameters of type LocalVariable修饰符和类方法描述StackFrame.getValue(LocalVariable variable) Gets theValueof aLocalVariablein this frame.voidStackFrame.setValue(LocalVariable variable, Value value) Sets theValueof aLocalVariablein this frame.Method parameters in com.sun.jdi with type arguments of type LocalVariable修饰符和类方法描述StackFrame.getValues(List<? extends LocalVariable> variables) Returns the values of multiple local variables in this frame.