A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / lookup / BindingIds.java
index e55c779..1c4054c 100644 (file)
@@ -12,10 +12,16 @@ package net.sourceforge.phpdt.internal.compiler.lookup;
 
 public interface BindingIds {
        final int FIELD = 1;
+
        final int LOCAL = 2;
+
        final int VARIABLE = FIELD | LOCAL;
+
        final int TYPE = 4;
+
        final int METHOD = 8;
+
        final int PACKAGE = 16;
+
        final int IMPORT = 32;
 }