package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugValue extends XDebugAbstractValue { public XDebugValue(XDebugStackFrame variable, Node value) { super(variable, value); fValueString = "uninitialized"; fTypeName = "unknown"; } public void renderValueString(String data) { } public boolean verifyValue(String expression) { return false; } }