Initial implementation of the new Debug Plugin
[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
7         public XDebugValue(XDebugVariable variable, Node varNode, String typeName) {
8                 super(variable, varNode, typeName);
9                 // TODO Auto-generated constructor stub
10         }
11
12         public void setType(String typeName) {
13                 fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
14                 fTypeName="unknown";
15         }
16         public void renderValueString(String data) {
17                 fValueString="uninitialized";
18         }
19
20         public boolean verifyValue(String expression) {
21                 // TODO Auto-generated method stub
22                 return false;
23         }
24
25 }