Whole refactor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugIntValue.java
index 01b1249..e955ad5 100644 (file)
@@ -3,13 +3,8 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugIntValue extends XDebugAbstractValue {
-       public XDebugIntValue(XDebugVariable variable, Node varNode,String TypeName) {
-               super(variable, varNode,TypeName);
-       }
-       
-       public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_INT;
-               fTypeName = typeName;
+       public XDebugIntValue(XDebugStackFrame frame, Node value) {
+               super(frame, value);
        }
        
        public boolean supportsValueModification() {