Module jdk.jdi
Package com.sun.jdi

Interface LocalVariable

All Superinterfaces:
Comparable<LocalVariable>, Mirror

public interface LocalVariable extends Mirror, Comparable<LocalVariable>
A local variable in the target VM. Each variable declared within a Method has its own LocalVariable object. Variables of the same name declared in different scopes have different LocalVariable objects. LocalVariables can be used alone to retrieve static information about their declaration, or can be used in conjunction with a StackFrame to set and get values.
Since:
1.3
See Also: