2cbbac6e02450d05acbce3c21fca1df2f9120ec2
[phpeclipse.git] /
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.w3c.dom.Node;
4
5 public class XDebugObjectValue extends XDebugAbstractValue {
6         public XDebugObjectValue(XDebugStackFrame variable, Node value) {
7                 super(variable, value);
8         }
9
10         public void renderValueString(String data) {
11                 fValueString = data;
12         }
13
14         public boolean verifyValue(String expression) {
15                 return false;
16         }
17 }