Whole refactor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugArrayValue.java
index 6ecfd8e..41349a9 100644 (file)
@@ -3,16 +3,8 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugArrayValue extends XDebugAbstractValue {
-
-       public XDebugArrayValue(XDebugVariable variable, Node varNode,
-                       String typeName) {
-               super(variable, varNode, typeName);
-       }
-
-       public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_ARRAY;
-               fTypeName = typeName;
-
+       public XDebugArrayValue(XDebugStackFrame variable, Node value) {
+               super(variable, value);
        }
 
        public void renderValueString(String data) {
@@ -30,4 +22,4 @@ public class XDebugArrayValue extends XDebugAbstractValue {
        public boolean verifyValue(String expression) {
                return false;
        }
-}
+}
\ No newline at end of file