X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java index 1690a23..fbbf9df 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugValue.java @@ -3,20 +3,16 @@ 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); + public XDebugValue(XDebugStackFrame variable, Node value) { + super(variable, value); 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; } -} +} \ No newline at end of file