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); fValueString = "uninitialized"; fType = XDebugAbstractValue.VALUETYPE_UNINITIALIZED; fTypeName = "unknown"; } public void setType(String typeName) { } public void renderValueString(String data) { } public boolean verifyValue(String expression) { return false; } }