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 cc158a9..2f636fa 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 @@ -1,25 +1,18 @@ package net.sourceforge.phpeclipse.xdebug.php.model; +import org.eclipse.debug.core.DebugException; import org.w3c.dom.Node; public class XDebugValue extends XDebugAbstractValue { - - public XDebugValue(XDebugVariable variable, Node varNode, String typeName) { - super(variable, varNode, typeName); - // TODO Auto-generated constructor stub - } - - public void setType(String typeName) { - fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED; - fTypeName="unknown"; + public XDebugValue(XDebugStackFrame variable, Node value) throws DebugException { + super(variable, value); } + public void renderValueString(String data) { - fValueString="uninitialized"; + fValueString = "uninitialized"; } public boolean verifyValue(String expression) { - // TODO Auto-generated method stub return false; } - -} +} \ No newline at end of file