Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugValue.java
index 72a1e70..62f9347 100644 (file)
@@ -7,19 +7,28 @@ public class XDebugValue extends XDebugAbstractValue {
        public XDebugValue(XDebugVariable variable, Node varNode, String typeName) {
                super(variable, varNode, typeName);
                // TODO Auto-generated constructor stub
+               fValueString="uninitialized";
+               fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
+               fTypeName="unknown";
+
        }
+       
+       public XDebugValue(XDebugVariable variable, String typeName) {
+               super(variable, typeName);
+               fValueString="uninitialized";
+               fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
+               fTypeName="unknown";
 
-       public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
-               fTypeName = "unknown";
        }
 
+
+       public void setType(String typeName) {
+       }
+       
        public void renderValueString(String data) {
-               fValueString = "uninitialized";
        }
 
        public boolean verifyValue(String expression) {
-               // TODO Auto-generated method stub
                return false;
        }