package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugStringValue extends XDebugAbstractValue { public XDebugStringValue(XDebugVariable variable, Node varNode, String typeName) { super(variable, varNode, typeName); } public void setType(String typeName) { fType = XDebugAbstractValue.VALUETYPE_STRING; fTypeName = typeName; } public void renderValueString(String data) { fValueString = "\"" + data + "\""; } public boolean supportsValueModification() { return true; } public boolean verifyValue(String expression) { return true; } }