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); } public void renderValueString(String data) { fValueString = "uninitialized"; } public boolean verifyValue(String expression) { return false; } }