X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugStringValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugStringValue.java index 388c412..17168e3 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugStringValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugStringValue.java @@ -10,6 +10,12 @@ public class XDebugStringValue extends XDebugAbstractValue { super(variable, varNode, typeName); fDataString=null; } + + public XDebugStringValue(XDebugVariable variable, String typeName) { + super(variable, typeName); + fDataString=null; + } + public void setType(String typeName) { fType=XDebugAbstractValue.VALUETYPE_STRING;