Change visibility of net.sourceforge.phpeclipse.xdebug.php.model.XDebugAbstractValue...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugIntValue.java
index 01b1249..f45eaa8 100644 (file)
@@ -1,15 +1,11 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugIntValue extends XDebugAbstractValue {
-       public XDebugIntValue(XDebugVariable variable, Node varNode,String TypeName) {
-               super(variable, varNode,TypeName);
-       }
-       
-       public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_INT;
-               fTypeName = typeName;
+       public XDebugIntValue(XDebugStackFrame frame, Node value) throws DebugException {
+               super(frame, value);
        }
        
        public boolean supportsValueModification() {
@@ -17,7 +13,7 @@ public class XDebugIntValue extends XDebugAbstractValue {
        }
                
        public void renderValueString(String dataString) {
-               fValueString = dataString;
+               setValueString(dataString)/*fValueString = dataString*/;
        }
        
        public boolean verifyValue(String expression) {