new icons
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / mover / obfuscator / PHPIdentifier.java
index 05820af..74098e8 100644 (file)
@@ -72,15 +72,15 @@ public class PHPIdentifier {
   public String toString() {
     switch (fType) {
       case CLASS :
-        return "class ";
+        return "class - ";
       case DEFINE :
-        return "define ";
+        return "define - ";
       case FUNCTION :
-        return "function ";
+        return "function - ";
       case METHOD :
-        return "method ";
+        return "method - ";
       case VARIABLE :
-        return "variable ";
+        return "variable - ";
     }
     return "";
   }