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 XDebugIntValue(XDebugVariable variable,String TypeName) {
13 super(variable,TypeName);
17 public void setType(String typeName) {
18 fType=XDebugAbstractValue.VALUETYPE_INT;
22 public boolean supportsValueModification() {
26 public void renderValueString(String dataString) {
27 fValueString=dataString;
31 public boolean verifyValue(String expression) {
33 Integer.parseInt(expression);
34 } catch (NumberFormatException e) {
40 /*public String toString() {