A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugObjectValue.java
index 370e44d..2f3c66d 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) {