X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugIntValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugIntValue.java index af573ea..e955ad5 100644 --- a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugIntValue.java +++ b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugIntValue.java @@ -3,20 +3,8 @@ package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugIntValue extends XDebugAbstractValue { - - public XDebugIntValue(XDebugVariable variable, Node varNode,String TypeName) { - super(variable, varNode,TypeName); - - } - - public XDebugIntValue(XDebugVariable variable,String TypeName) { - super(variable,TypeName); - - } - - public void setType(String typeName) { - fType=XDebugAbstractValue.VALUETYPE_INT; - fTypeName=typeName; + public XDebugIntValue(XDebugStackFrame frame, Node value) { + super(frame, value); } public boolean supportsValueModification() { @@ -24,9 +12,8 @@ public class XDebugIntValue extends XDebugAbstractValue { } public void renderValueString(String dataString) { - fValueString=dataString; + fValueString = dataString; } - public boolean verifyValue(String expression) { try { @@ -36,9 +23,4 @@ public class XDebugIntValue extends XDebugAbstractValue { } return true; } - - /*public String toString() { - return null; - }*/ - -} +} \ No newline at end of file