Java Debug Interface

Uses of Interface
com.sun.jdi.LocalVariable

Packages that use LocalVariable
com.sun.jdi 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
 LocalVariable StackFrame.visibleVariableByName(String name)
          Finds a LocalVariable that matches the given name and is visible at the current frame location.
 

Methods in com.sun.jdi with parameters of type LocalVariable
 Value StackFrame.getValue(LocalVariable variable)
          Gets the Value of a LocalVariable in this frame.
 void StackFrame.setValue(LocalVariable variable, Value value)
          Sets the Value of a LocalVariable in this frame.
 


Java Debug Interface