package net.sourceforge.phpeclipse.xdebug.php.model; import org.w3c.dom.Node; public class XDebugObjectValue extends XDebugAbstractValue { public XDebugObjectValue(XDebugVariable variable, Node varNode, String typeName) { super(variable, varNode, typeName); } public void setType(String typeName) { fType = XDebugAbstractValue.VALUETYPE_OBJECT; fTypeName = typeName; } public void renderValueString(String data) { fValueString = data; } public boolean verifyValue(String expression) { return false; } }