improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / obfuscator / PHPIdentifier.java
index f932b4d..fab771e 100644 (file)
@@ -1,7 +1,7 @@
 package net.sourceforge.phpeclipse.obfuscator;
 
 /**
- * @author khartlage
+ * Object which holds an PHP identifier name (i.e. class, function, variable,...)
  *  
  */
 public class PHPIdentifier {
@@ -13,6 +13,8 @@ public class PHPIdentifier {
   public final static int DEFINE = 5;
   public final static int CONSTRUCTOR = 6;
   public final static int GLOBAL_VARIABLE = 7;
+  public final static int EXTENDS = 8;
+  public final static int IMPLEMENTS = 9;
 
   private String fIdentifier;