Whole refactor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.w3c.dom.Node;
4
5 public class XDebugStringValue extends XDebugAbstractValue {
6         public XDebugStringValue(XDebugStackFrame variable, Node value) {
7                 super(variable, value);
8         }
9
10         public void renderValueString(String data) {
11                 fValueString = "\"" + data + "\"";
12         }
13
14         public boolean supportsValueModification() {
15                 return true;
16         }
17
18         public boolean verifyValue(String expression) {
19                 return true;
20         }
21 }