improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / Flags.java
index fefe486..9182b7f 100644 (file)
@@ -24,13 +24,17 @@ import net.sourceforge.phpdt.internal.compiler.env.IConstants;
  * Note that the numeric values of these flags match the ones for class files
  * as described in the Java Virtual Machine Specification. The AST class
  * <code>Modifier</code> provides the same functionality as this class, only in
- * the <code>org.eclipse.jdt.core.dom</code> package.
+ * the <code>net.sourceforge.phpdt.core.dom</code> package.
  * </p>
  *
  * @see IMember#getFlags
  */
 public final class Flags {
-
+  /**
+        * Constant representing the absence of any flag
+        * @since 3.0
+        */
+       public static final int AccDefault = 0;
        /**
         * Public access flag. See The Java Virtual Machine Specification for more details.
         * @since 2.0