Change XDebugAbstractValue member visibility to private.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
index b148bd8..fcbd867 100644 (file)
@@ -1,16 +1,11 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 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) throws DebugException {
+               super(variable, value);
        }
 
        public void renderValueString(String data) {
@@ -24,4 +19,4 @@ public class XDebugStringValue extends XDebugAbstractValue {
        public boolean verifyValue(String expression) {
                return true;
        }
-}
+}
\ No newline at end of file