1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugStringValue extends XDebugAbstractValue {
6 public XDebugStringValue(XDebugVariable variable, Node varNode,
8 super(variable, varNode, typeName);
11 public XDebugStringValue(XDebugVariable variable, String typeName) {
12 super(variable, typeName);
16 public void setType(String typeName) {
17 fType = XDebugAbstractValue.VALUETYPE_STRING;
21 public void renderValueString(String data) {
22 fValueString = "\"" + data + "\"";
25 public boolean supportsValueModification() {
29 public boolean verifyValue(String expression) {