Class sun.tools.debug.RemoteField
All Packages Class Hierarchy This Package Previous Next Index
Class sun.tools.debug.RemoteField
java.lang.Object
|
+----sun.tools.debug.Field
|
+----sun.tools.debug.RemoteField
- public class RemoteField
- implements AgentConstants
A RemoteField allows access to a variable or method of an object
or class in a remote Java interpreter.
- See Also:
- RemoteStackVariable
-
getModifiers()
- Returns a string with the field's modifiers, such as "public",
"static", "final", etc.
-
getName()
- Returns the name of the field.
-
getType()
- Returns a type string describing the field.
-
isStatic()
- Returns whether the field is static (a class variable or method).
-
toString()
- Returns a String that represents the value of this Object.
getName
public String getName()
- Returns the name of the field.
getType
public String getType()
- Returns a type string describing the field.
getModifiers
public String getModifiers()
- Returns a string with the field's modifiers, such as "public",
"static", "final", etc. If the field has no modifiers, an empty
String is returned.
isStatic
public boolean isStatic()
- Returns whether the field is static (a class variable or method).
toString
public String toString()
- Returns a String that represents the value of this Object.
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index