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 3e1e8dc..010c2a9 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 @@ -1,22 +1,33 @@ package net.sourceforge.phpeclipse.xdebug.php.model; +import org.eclipse.debug.core.DebugEvent; import org.eclipse.debug.core.DebugException; import org.w3c.dom.Node; public class XDebugIntValue extends XDebugAbstractValue { - public XDebugIntValue(XDebugStackFrame frame, Node value) throws DebugException { - super(frame, value); + public XDebugIntValue(XDebugStackFrame stackFrame, Node value) throws DebugException { + super(stackFrame, value); + + if (isValid(rowValue)) { + setValueString(rowValue); + } } public boolean supportsValueModification() { return true; } - public void renderValueString(String dataString) { - fValueString = dataString; + public boolean setValue(String expression) throws DebugException { + if (isValid(expression)) { + setValueString(expression); + fireEvent(new DebugEvent(this, DebugEvent.CHANGE, DebugEvent.CONTENT)); + return true; + } + + return false; } - - public boolean verifyValue(String expression) { + + private boolean isValid(String expression) { try { Integer.parseInt(expression); } catch (NumberFormatException e) { @@ -24,4 +35,8 @@ public class XDebugIntValue extends XDebugAbstractValue { } return true; } + + public boolean verifyValue(String expression) { + return isValid(expression); + } } \ No newline at end of file