1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugIntValue extends XDebugAbstractValue {
6 public XDebugIntValue(XDebugStackFrame frame, Node value) {
10 public boolean supportsValueModification() {
14 public void renderValueString(String dataString) {
15 fValueString = dataString;
18 public boolean verifyValue(String expression) {
20 Integer.parseInt(expression);
21 } catch (NumberFormatException e) {