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 / XDebugArrayValue.java
index e7075f8..f0117cd 100644 (file)
@@ -8,15 +8,20 @@ public class XDebugArrayValue extends XDebugAbstractValue {
                        String typeName) {
                super(variable, varNode, typeName);
        }
+       
+       public XDebugArrayValue(XDebugVariable variable, String typeName) {
+               super(variable, typeName);
+       }
+
 
        public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_ARRAY;
-               fTypeName = typeName;
+               fType=XDebugAbstractValue.VALUETYPE_ARRAY;
+               fTypeName=typeName;
 
        }
 
        public void renderValueString(String data) {
-               fValueString = data + " element(s)";
+               fValueString= data +" element(s)";
        }
 
        public boolean verifyValue(String expression) {