Whole refactor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugBooleanValue.java
index 113f7c2..67e2713 100644 (file)
@@ -3,25 +3,14 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugBooleanValue extends XDebugAbstractValue {
-
-       public XDebugBooleanValue(XDebugVariable variable, Node varNode,
-                       String typeName) {
-               super(variable, varNode, typeName);
+       public XDebugBooleanValue(XDebugStackFrame variable, Node value) {
+               super(variable, value);
        }
        
-       public XDebugBooleanValue(XDebugVariable variable,String typeName) {
-               super(variable, typeName);
-       }
-
-
        public boolean supportsValueModification() {
                return true;
        }
 
-       public void setType(String typeName) {
-               fType=XDebugAbstractValue.VALUETYPE_BOOLEAN;
-               fTypeName=typeName;     }
-
        public void renderValueString(String data) {
                int value=-1;
                try {
@@ -56,5 +45,4 @@ public class XDebugBooleanValue extends XDebugAbstractValue {
                        return true;
                return false;
        }
-
-}
+}
\ No newline at end of file