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 fValueString = data + " element(s)";
22 public boolean verifyValue(String expression) {
23 // TODO Auto-generated method stub