Initial implementation of the new Debug Plugin
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugObjectValue.java
diff --git a/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugObjectValue.java b/net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugObjectValue.java
new file mode 100644 (file)
index 0000000..370e44d
--- /dev/null
@@ -0,0 +1,32 @@
+package net.sourceforge.phpeclipse.xdebug.php.model;
+
+import org.w3c.dom.Node;
+
+public class XDebugObjectValue extends XDebugAbstractValue {
+
+       public XDebugObjectValue(XDebugVariable variable, Node varNode,
+                       String typeName) {
+               super(variable, varNode, typeName);
+       }
+
+       public void setType(String typeName) {
+               fType=XDebugAbstractValue.VALUETYPE_OBJECT;
+               fTypeName=typeName;
+
+       }
+
+       public void renderValueString(String data) {
+               fValueString= data;
+
+       }
+       
+       public String toString() {
+               return "class "+fValueString;
+       }
+
+       public boolean verifyValue(String expression) {
+               // TODO Auto-generated method stub
+               return false;
+       }
+
+}