Whole refactor.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
index b148bd8..6fc0371 100644 (file)
@@ -3,14 +3,8 @@ package net.sourceforge.phpeclipse.xdebug.php.model;
 import org.w3c.dom.Node;
 
 public class XDebugStringValue extends XDebugAbstractValue {
-       public XDebugStringValue(XDebugVariable variable, Node varNode,
-                       String typeName) {
-               super(variable, varNode, typeName);
-       }
-
-       public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_STRING;
-               fTypeName = typeName;
+       public XDebugStringValue(XDebugStackFrame variable, Node value) {
+               super(variable, value);
        }
 
        public void renderValueString(String data) {
@@ -24,4 +18,4 @@ public class XDebugStringValue extends XDebugAbstractValue {
        public boolean verifyValue(String expression) {
                return true;
        }
-}
+}
\ No newline at end of file