edu.rice.cs.drjava.model.debug
Class DebugManager.WatchData

java.lang.Object
  |
  +--edu.rice.cs.drjava.model.debug.DebugManager.WatchData
Enclosing class:
DebugManager

public class DebugManager.WatchData
extends Object

Class for keeping track of watched fields and variables.


Field Summary
private  boolean _changed
           
private  String _name
           
private  com.sun.jdi.Type _type
           
private  String _value
           
 
Constructor Summary
DebugManager.WatchData(String name)
           
 
Method Summary
 boolean getChanged()
           
 String getName()
           
 com.sun.jdi.Type getType()
           
 String getValue()
           
 void setName(String name)
           
 void setType(com.sun.jdi.Type type)
           
 void setValue(Object value)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

_name

private String _name

_value

private String _value

_type

private com.sun.jdi.Type _type

_changed

private boolean _changed
Constructor Detail

DebugManager.WatchData

public DebugManager.WatchData(String name)
Method Detail

getName

public String getName()

getValue

public String getValue()

getType

public com.sun.jdi.Type getType()

setName

public void setName(String name)

setValue

public void setValue(Object value)

setType

public void setType(com.sun.jdi.Type type)

getChanged

public boolean getChanged()

toString

public String toString()
Overrides:
toString in class Object