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 e7075f8..f0117cd 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 @@ -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) {