72a1e70dc654c52abb56a02849f1993463bfb5ed
[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
17         public void renderValueString(String data) {
18                 fValueString = "uninitialized";
19         }
20
21         public boolean verifyValue(String expression) {
22                 // TODO Auto-generated method stub
23                 return false;
24         }
25
26 }