1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugIntValue extends XDebugAbstractValue {
6 public XDebugIntValue(XDebugVariable variable, Node varNode,String TypeName) {
7 super(variable, varNode,TypeName);
10 public void setType(String typeName) {
11 fType = XDebugAbstractValue.VALUETYPE_INT;
15 public boolean supportsValueModification() {
19 public void renderValueString(String dataString) {
20 fValueString = dataString;
23 public boolean verifyValue(String expression) {
25 Integer.parseInt(expression);
26 } catch (NumberFormatException e) {