Fix variable view value modification and refactored XDebugAbstractValue and derived...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugResourceValue.java
index 1bf7cc6..87cf6c3 100644 (file)
@@ -1,21 +1,14 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugResourceValue extends XDebugAbstractValue {
-       public XDebugResourceValue(XDebugStackFrame variable, Node value) {
+       public XDebugResourceValue(XDebugStackFrame variable, Node value) throws DebugException {
                super(variable, value);
        }
 
        public void renderValueString(String data) {
-               fValueString = "\"" + data + "\"";
-       }
-
-       public boolean supportsValueModification() {
-               return true;
-       }
-
-       public boolean verifyValue(String expression) {
-               return true;
+               setValueString("\"" + data + "\"");
        }
 }
\ No newline at end of file