1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugStringValue extends XDebugAbstractValue {
7 private String fDataString;
8 public XDebugStringValue(XDebugVariable variable, Node varNode,
10 super(variable, varNode, typeName);
14 public XDebugStringValue(XDebugVariable variable, String typeName) {
15 super(variable, typeName);
20 public void setType(String typeName) {
21 fType=XDebugAbstractValue.VALUETYPE_STRING;
26 public void renderValueString(String data) {
28 fValueString="\""+data+"\"";
31 public boolean supportsValueModification() {
36 public String toString() {
40 public boolean verifyValue(String expression) {
41 // TODO Auto-generated method stub