Fix variable view value modification and refactored XDebugAbstractValue and derived...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugValue.java
index fbbf9df..3847ae6 100644 (file)
@@ -1,18 +1,12 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugValue extends XDebugAbstractValue {
-       public XDebugValue(XDebugStackFrame variable, Node value) {
+       public XDebugValue(XDebugStackFrame variable, Node value) throws DebugException {
                super(variable, value);
-               fValueString = "uninitialized";
-               fTypeName = "unknown";
-       }
-       
-       public void renderValueString(String data) {
-       }
 
-       public boolean verifyValue(String expression) {
-               return false;
+               setValueString("uninitialized");
        }
 }
\ No newline at end of file