2f3c66daeae3e8fdf223aa837b8b92680f49743b
[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
7         public XDebugObjectValue(XDebugVariable variable, Node varNode,
8                         String typeName) {
9                 super(variable, varNode, typeName);
10         }
11
12         public void setType(String typeName) {
13                 fType = XDebugAbstractValue.VALUETYPE_OBJECT;
14                 fTypeName = typeName;
15
16         }
17
18         public void renderValueString(String data) {
19                 fValueString = data;
20
21         }
22
23         public String toString() {
24                 return "class " + fValueString;
25         }
26
27         public boolean verifyValue(String expression) {
28                 // TODO Auto-generated method stub
29                 return false;
30         }
31
32 }