removed unused methods: /net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugVariable.java
index 9c289a0..9bd587e 100644 (file)
@@ -22,7 +22,7 @@ import org.w3c.dom.Node;
  * Window - Preferences - Java - Code Style - Code Templates
  */
 public class XDebugVariable  extends XDebugElement implements IVariable/*, IWatchExpressionFactoryAdapter*/ {
-       public static final int VARTYPE_UNKNOWN = -1;
+       /*public static final int VARTYPE_UNKNOWN = -1;
        public static final int VARTYPE_UNINITIALIZED = 0;
        public static final int VARTYPE_STRING = 1;
        public static final int VARTYPE_INT = 2;
@@ -30,7 +30,7 @@ public class XDebugVariable  extends XDebugElement implements IVariable/*, IWatc
        public static final int VARTYPE_ARRAY = 8;
        public static final int VARTYPE_HASH = 9;
        public static final int VARTYPE_OBJECT = 10;
-       public static final int VARTYPE_RESOURCE = 11;
+       public static final int VARTYPE_RESOURCE = 11;*/
        
        private int fNumChildren;
        private String fName;
@@ -172,11 +172,6 @@ public class XDebugVariable  extends XDebugElement implements IVariable/*, IWatc
                return fFrame;
        }
        
-       public void setStackFrame(XDebugStackFrame frame) {
-               fFrame = frame;
-               super.setDebugTarget((XDebugTarget) frame.getDebugTarget());
-       }
-
 //     public int getType() {
 //             return fType;
 //     }
@@ -193,10 +188,6 @@ public class XDebugVariable  extends XDebugElement implements IVariable/*, IWatc
                return (fNumChildren > 0);
        }
 
-       public boolean isArray() {
-               return (fValue.isArray());
-       }
-
        public String getEncoding() {
                return fEncoding;
        }
@@ -221,10 +212,6 @@ public class XDebugVariable  extends XDebugElement implements IVariable/*, IWatc
                return fNumChildren;
        }
 
-       public void setNumChildren(int numChildren) {
-               fNumChildren = numChildren;
-       }
-       
        public void setChange(IVariable oldVariable)  throws DebugException {
                XDebugAbstractValue oldValue = null;
                IVariable[] newVariable = null;