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
index 2f3c66d..370e44d 100644 (file)
@@ -10,18 +10,18 @@ public class XDebugObjectValue extends XDebugAbstractValue {
        }
 
        public void setType(String typeName) {
-               fType = XDebugAbstractValue.VALUETYPE_OBJECT;
-               fTypeName = typeName;
+               fType=XDebugAbstractValue.VALUETYPE_OBJECT;
+               fTypeName=typeName;
 
        }
 
        public void renderValueString(String data) {
-               fValueString = data;
+               fValueString= data;
 
        }
-
+       
        public String toString() {
-               return "class " + fValueString;
+               return "class "+fValueString;
        }
 
        public boolean verifyValue(String expression) {