Initial implementation of the new Debug Plugin
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugValue.java
diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java
new file mode 100644 (file)
index 0000000..cc158a9
--- /dev/null
@@ -0,0 +1,25 @@
+package net.sourceforge.phpeclipse.xdebug.php.model;
+
+import org.w3c.dom.Node;
+
+public class XDebugValue extends XDebugAbstractValue {
+
+       public XDebugValue(XDebugVariable variable, Node varNode, String typeName) {
+               super(variable, varNode, typeName);
+               // TODO Auto-generated constructor stub
+       }
+
+       public void setType(String typeName) {
+               fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
+               fTypeName="unknown";
+       }
+       public void renderValueString(String data) {
+               fValueString="uninitialized";
+       }
+
+       public boolean verifyValue(String expression) {
+               // TODO Auto-generated method stub
+               return false;
+       }
+
+}