Change visibility of net.sourceforge.phpeclipse.xdebug.php.model.XDebugAbstractValue...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugFloatValue.java
index 5d2d4ee..990e371 100644 (file)
@@ -1,26 +1,19 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 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) throws DebugException {
+               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;
+               setValueString(data)/*fValueString = data*/;
        }
 
        public boolean verifyValue(String expression) {
@@ -31,5 +24,4 @@ public class XDebugFloatValue extends XDebugAbstractValue {
                }
                return true;
        }
-
-}
+}
\ No newline at end of file