fix bug 678.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugBooleanValue.java
index 6216046..bb37515 100644 (file)
@@ -8,6 +8,11 @@ public class XDebugBooleanValue extends XDebugAbstractValue {
                        String typeName) {
                super(variable, varNode, typeName);
        }
+       
+       public XDebugBooleanValue(XDebugVariable variable,String typeName) {
+               super(variable, typeName);
+       }
+
 
        public boolean supportsValueModification() {
                return true;
@@ -51,5 +56,8 @@ public class XDebugBooleanValue extends XDebugAbstractValue {
                        return true;
                return false;
        }
-
+       
+       /*public String toString() {
+               return null;
+       }*/
 }