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