X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugArrayValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugArrayValue.java index 3745a14..41349a9 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugArrayValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugArrayValue.java @@ -3,21 +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 XDebugArrayValue(XDebugVariable variable, String typeName) { - super(variable, 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) { @@ -33,11 +20,6 @@ public class XDebugArrayValue extends XDebugAbstractValue { } public boolean verifyValue(String expression) { - // TODO Auto-generated method stub return false; } - - /*public String toString() { - return null; - }*/ -} +} \ No newline at end of file