1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugStringValue extends XDebugAbstractValue {
7 private String fDataString;
9 public XDebugStringValue(XDebugVariable variable, Node varNode,
11 super(variable, varNode, typeName);
15 public void setType(String typeName) {
16 fType = XDebugAbstractValue.VALUETYPE_STRING;
21 public void renderValueString(String data) {
23 fValueString = "\"" + data + "\"";
26 public boolean supportsValueModification() {
30 public String toString() {
34 public boolean verifyValue(String expression) {
35 // TODO Auto-generated method stub