remove unused constructor.
[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.w3c.dom.Node;
4
5 public class XDebugObjectValue extends XDebugAbstractValue {
6         public XDebugObjectValue(XDebugVariable variable, Node varNode,
7                         String typeName) {
8                 super(variable, varNode, typeName);
9         }
10
11         public void setType(String typeName) {
12                 fType = XDebugAbstractValue.VALUETYPE_OBJECT;
13                 fTypeName = typeName;
14
15         }
16
17         public void renderValueString(String data) {
18                 fValueString = data;
19
20         }
21
22         public boolean verifyValue(String expression) {
23                 return false;
24         }
25 }