fix bug 678.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugFloatValue.java
index 5d2d4ee..8d9dcd6 100644 (file)
@@ -8,6 +8,12 @@ public class XDebugFloatValue extends XDebugAbstractValue {
                super(variable, varNode,TypeName);
                
        }
+       
+       public XDebugFloatValue(XDebugVariable variable,String TypeName) {
+               super(variable,TypeName);
+               
+       }
+
 
        public boolean supportsValueModification() {
                return true;
@@ -32,4 +38,7 @@ public class XDebugFloatValue extends XDebugAbstractValue {
                return true;
        }
 
+       /*public String toString() {
+               return null;
+       }*/
 }