1 package net.sourceforge.phpeclipse.xdebug.php.model;
 
   3 import org.eclipse.debug.core.DebugException;
 
   4 import org.w3c.dom.Node;
 
   6 public class XDebugArrayValue extends XDebugAbstractValue {
 
   7         public XDebugArrayValue(XDebugStackFrame variable, Node value) throws DebugException {
 
   8                 super(variable, value);
 
  11         public void renderValueString(String data) throws DebugException  {
 
  12                 if (data.equals("")) {
 
  13                         setValueString("empty")/*fValueString = "empty"*/;
 
  15                         if ("array".equals(getReferenceTypeName())) {
 
  16                                 setValueString("array")/*fValueString = "array"*/;
 
  18                                 setValueString(data)/*fValueString = data*/;
 
  23         public boolean verifyValue(String expression) {