fix bug 678.
[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         /*public String toString() {
27                 return null;
28         }*/
29
30         public boolean verifyValue(String expression) {
31                 // TODO Auto-generated method stub
32                 return false;
33         }
34
35 }