Change XDebugAbstractValue member visibility to private.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugArrayValue.java
index 41349a9..128bd64 100644 (file)
@@ -1,17 +1,18 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugArrayValue extends XDebugAbstractValue {
-       public XDebugArrayValue(XDebugStackFrame variable, Node value) {
+       public XDebugArrayValue(XDebugStackFrame variable, Node value) throws DebugException {
                super(variable, value);
        }
 
-       public void renderValueString(String data) {
+       public void renderValueString(String data) throws DebugException  {
                if (data.equals("")) {
                        fValueString = "empty";
                } else {
-                       if ("array".equals(fTypeName)) {
+                       if ("array".equals(getReferenceTypeName())) {
                                fValueString = "array";
                        } else {
                                fValueString = data;