remove unused constructor.
[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(XDebugVariable variable, Node varNode, String typeName) {
7                 super(variable, varNode, typeName);
8                 fValueString = "uninitialized";
9                 fType = XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
10                 fTypeName = "unknown";
11         }
12         
13         public void setType(String typeName) {
14         }
15         
16         public void renderValueString(String data) {
17         }
18
19         public boolean verifyValue(String expression) {
20                 return false;
21         }
22 }