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