1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugIntValue extends XDebugAbstractValue {
7 public XDebugIntValue(XDebugVariable variable, Node varNode, String TypeName) {
8 super(variable, varNode, TypeName);
12 public void setType(String typeName) {
13 fType = XDebugAbstractValue.VALUETYPE_INT;
17 public boolean supportsValueModification() {
21 public void renderValueString(String dataString) {
22 fValueString = dataString;
25 public boolean verifyValue(String expression) {
27 Integer.parseInt(expression);
28 } catch (NumberFormatException e) {
34 public String toString() {