1 package net.sourceforge.phpeclipse.xdebug.php.model;
3 import org.w3c.dom.Node;
5 public class XDebugObjectValue extends XDebugAbstractValue {
7 public XDebugObjectValue(XDebugVariable variable, Node varNode,
9 super(variable, varNode, typeName);
12 public void setType(String typeName) {
13 fType=XDebugAbstractValue.VALUETYPE_OBJECT;
18 public void renderValueString(String data) {
23 public String toString() {
24 return "class "+fValueString;
27 public boolean verifyValue(String expression) {
28 // TODO Auto-generated method stub