Uses of Interface
com.sun.jdi.LocalVariable
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 LocalVariable in com.sun.jdi
Modifier and TypeMethodDescriptionStackFrame.visibleVariableByName
(String name) Finds aLocalVariable
that matches the given name and is visible at the current frame location.Modifier and TypeMethodDescriptionMethod.arguments()
Returns a list containing eachLocalVariable
that 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 eachLocalVariable
declared in this method.Method.variablesByName
(String name) Returns a list containing eachLocalVariable
of a given name in this method.StackFrame.visibleVariables()
Returns a list containing eachLocalVariable
that can be accessed from this frame's location.Modifier and TypeMethodDescriptionStackFrame.getValue
(LocalVariable variable) Gets theValue
of aLocalVariable
in this frame.void
StackFrame.setValue
(LocalVariable variable, Value value) Sets theValue
of aLocalVariable
in this frame.Modifier and TypeMethodDescriptionStackFrame.getValues
(List<? extends LocalVariable> variables) Returns the values of multiple local variables in this frame.