Initial implementation of the new Debug Plugin
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugArrayValue.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.w3c.dom.Node;
4
5 public class XDebugArrayValue extends XDebugAbstractValue {
6
7         public XDebugArrayValue(XDebugVariable variable, Node varNode,
8                         String typeName) {
9                 super(variable, varNode, typeName);
10         }
11
12         public void setType(String typeName) {
13                 fType=XDebugAbstractValue.VALUETYPE_ARRAY;
14                 fTypeName=typeName;
15
16         }
17
18         public void renderValueString(String data) {
19                 fValueString= data +" element(s)";
20         }
21
22         public boolean verifyValue(String expression) {
23                 // TODO Auto-generated method stub
24                 return false;
25         }
26
27 }