Packages  This Package  Previous  Next  Index
  Class sun.tools.debug.RemoteStackVariable
java.lang.Object
   |
   +----sun.tools.debug.LocalVariable
           |
           +----sun.tools.debug.RemoteStackVariable
  -  public class RemoteStackVariable
  
-  extends LocalVariable
  
-  implements AgentConstants
   
A RemoteStackVariable represents a method argument or local variable.
It is similar to a RemoteField, but is much more transient in nature.
    -  See Also:
    
 -  RemoteField
 
  
  -  
	getName()
   -  Return the name of a stack variable or argument.
  
 -  
	getType()
   -  Returns a Type object for the field.
  
 -  
	getValue()
   -  Return the value of a stack variable or argument.
  
 -  
	inScope()
   -  Return whether variable is in scope.
  
 -  
	methodArgument()
   -  Return whether variable is a method argument.
 
  
getName
  public String getName()
  -  Return the name of a stack variable or argument.
 
getValue
  public RemoteValue getValue()
  -  Return the value of a stack variable or argument.
 
inScope
  public boolean inScope()
  -  Return whether variable is in scope.
 
methodArgument
  public boolean methodArgument()
  -  Return whether variable is a method argument.
 
getType
  public Type getType()
  -  Returns a Type object for the field.
 
Packages  This Package  Previous  Next  Index