Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugIntValue.java
index 9002c3e..31a35e1 100644 (file)
@@ -4,24 +4,30 @@ import org.w3c.dom.Node;
 
 public class XDebugIntValue extends XDebugAbstractValue {
 
-       public XDebugIntValue(XDebugVariable variable, Node varNode, String TypeName) {
-               super(variable, varNode, TypeName);
-
+       public XDebugIntValue(XDebugVariable variable, Node varNode,String TypeName) {
+               super(variable, varNode,TypeName);
+               
        }
-
+       
+       public XDebugIntValue(XDebugVariable variable,String TypeName) {
+               super(variable,TypeName);
+               
+       }
+       
        public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_INT;
-               fTypeName = typeName;
+               fType=XDebugAbstractValue.VALUETYPE_INT;
+               fTypeName=typeName;
        }
-
+       
        public boolean supportsValueModification() {
                return true;
        }
-
+               
        public void renderValueString(String dataString) {
-               fValueString = dataString;
+               fValueString=dataString;
        }
 
+       
        public boolean verifyValue(String expression) {
                try {
                        Integer.parseInt(expression);
@@ -30,7 +36,7 @@ public class XDebugIntValue extends XDebugAbstractValue {
                }
                return true;
        }
-
+       
        public String toString() {
                return fValueString;
        }