1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugStringValue extends XDebugAbstractValue {
6 public XDebugStringValue(XDebugStackFrame variable, Node value) {
7 super(variable, value);
10 public void renderValueString(String data) {
11 fValueString = "\"" + data + "\"";
14 public boolean supportsValueModification() {
18 public boolean verifyValue(String expression) {