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