--- /home/cpdev/src/classpath/java/lang/reflect/Modifier.java	2005-07-02 21:03:35.000000000 +0000
+++ java/lang/reflect/Modifier.java	2005-06-30 05:34:39.000000000 +0000
@@ -158,6 +158,17 @@
   static final int ALL_FLAGS = 0xfff;
 
   /**
+   * GCJ-LOCAL: This access flag is set on methods we declare
+   * internally but which must not be visible to reflection.
+   */
+  static final int INVISIBLE = 0x1000;
+
+  /**
+   * GCJ-LOCAL: This access flag is set on interpreted classes.
+   */
+  static final int INTERPRETED = 0x1000;
+
+  /**
    * Check whether the given modifier is abstract.
    * @param mod the modifier.
    * @return <code>true</code> if abstract, <code>false</code> otherwise.
