1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugValue extends XDebugAbstractValue {
7 public XDebugValue(XDebugVariable variable, Node varNode, String typeName) {
8 super(variable, varNode, typeName);
9 // TODO Auto-generated constructor stub
12 public void setType(String typeName) {
13 fType = XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
14 fTypeName = "unknown";
17 public void renderValueString(String data) {
18 fValueString = "uninitialized";
21 public boolean verifyValue(String expression) {
22 // TODO Auto-generated method stub