Change XDebugAbstractValue member visibility to private.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugValue.java
index fbbf9df..2f636fa 100644 (file)
@@ -1,15 +1,15 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugValue extends XDebugAbstractValue {
-       public XDebugValue(XDebugStackFrame variable, Node value) {
+       public XDebugValue(XDebugStackFrame variable, Node value) throws DebugException {
                super(variable, value);
-               fValueString = "uninitialized";
-               fTypeName = "unknown";
        }
        
        public void renderValueString(String data) {
+               fValueString = "uninitialized";
        }
 
        public boolean verifyValue(String expression) {