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..cce3c52 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; @@ -27,9 +33,9 @@ public class XDebugStringValue extends XDebugAbstractValue { } - public String toString() { - return fDataString; - } + /*public String toString() { + return null; //fDataString; + }*/ public boolean verifyValue(String expression) { // TODO Auto-generated method stub