1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugArrayValue extends XDebugAbstractValue {
7 public XDebugArrayValue(XDebugVariable variable, Node varNode,
9 super(variable, varNode, typeName);
12 public void setType(String typeName) {
13 fType = XDebugAbstractValue.VALUETYPE_ARRAY;
18 public void renderValueString(String data) {
19 if (data.equals("")) {
20 fValueString = "empty";
22 if ("array".equals(fTypeName)) {
23 fValueString = "array";
30 public boolean verifyValue(String expression) {