1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugObjectValue extends XDebugAbstractValue {
6 public XDebugObjectValue(XDebugVariable variable, Node varNode,
8 super(variable, varNode, typeName);
11 public void setType(String typeName) {
12 fType = XDebugAbstractValue.VALUETYPE_OBJECT;
17 public void renderValueString(String data) {
22 public boolean verifyValue(String expression) {