1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugArrayValue extends XDebugAbstractValue {
6 public XDebugArrayValue(XDebugStackFrame variable, Node value) {
7 super(variable, value);
10 public void renderValueString(String data) {
11 if (data.equals("")) {
12 fValueString = "empty";
14 if ("array".equals(fTypeName)) {
15 fValueString = "array";
22 public boolean verifyValue(String expression) {