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 / XDebugValue.java
1 package net.sourceforge.phpeclipse.xdebug.php.model;
2
3 import org.w3c.dom.Node;
4
5 public class XDebugValue extends XDebugAbstractValue {
6
7         public XDebugValue(XDebugVariable variable, Node varNode, String typeName) {
8                 super(variable, varNode, typeName);
9                 // TODO Auto-generated constructor stub
10                 fValueString="uninitialized";
11                 fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
12                 fTypeName="unknown";
13
14         }
15         
16         public XDebugValue(XDebugVariable variable, String typeName) {
17                 super(variable, typeName);
18                 fValueString="uninitialized";
19                 fType=XDebugAbstractValue.VALUETYPE_UNINITIALIZED;
20                 fTypeName="unknown";
21
22         }
23
24
25         public void setType(String typeName) {
26         }
27         
28         public void renderValueString(String data) {
29         }
30
31         public boolean verifyValue(String expression) {
32                 return false;
33         }
34
35 }