1 package net.sourceforge.phpeclipse.xdebug.php.model;
 
   3 import org.w3c.dom.Node;
 
   5 public class XDebugValue extends XDebugAbstractValue {
 
   6         public XDebugValue(XDebugVariable variable, Node varNode, String typeName) {
 
   7                 super(variable, varNode, typeName);
 
   8                 fValueString = "uninitialized";
 
   9                 fType = XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
 
  10                 fTypeName = "unknown";
 
  13         public void setType(String typeName) {
 
  16         public void renderValueString(String data) {
 
  19         public boolean verifyValue(String expression) {