Whole refactor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugFloatValue.java
index 7e1dbff..2e15baf 100644 (file)
@@ -3,18 +3,13 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugFloatValue extends XDebugAbstractValue {
-       public XDebugFloatValue(XDebugVariable variable, Node varNode,String TypeName) {
-               super(variable, varNode,TypeName);
+       public XDebugFloatValue(XDebugStackFrame variable, Node value) {
+               super(variable, value);
        }
        
        public boolean supportsValueModification() {
                return true;
        }
-       
-       public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_FLOAT;
-               fTypeName = typeName;
-       }
 
        public void renderValueString(String data) {
                fValueString = data;