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 XDebugArrayValue(XDebugVariable variable, String typeName) {
13 super(variable, typeName);
17 public void setType(String typeName) {
18 fType=XDebugAbstractValue.VALUETYPE_ARRAY;
23 public void renderValueString(String data) {
24 if (data.equals("")) {
25 fValueString = /*"Array */"empty";
27 fValueString = /*"Array " + */data + " element(s)";
31 public boolean verifyValue(String expression) {
32 // TODO Auto-generated method stub