Importing the XDebugProxy code in the HEAD. The repo was tagged with T_BEFORE_XDEBUGP...
[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 }