Whole refactor.
[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         public XDebugArrayValue(XDebugStackFrame variable, Node value) {
7                 super(variable, value);
8         }
9
10         public void renderValueString(String data) {
11                 if (data.equals("")) {
12                         fValueString = "empty";
13                 } else {
14                         if ("array".equals(fTypeName)) {
15                                 fValueString = "array";
16                         } else {
17                                 fValueString = data;
18                         }
19                 }
20         }
21
22         public boolean verifyValue(String expression) {
23                 return false;
24         }
25 }