/[classpath]/classpath/vm/reference/java/lang/VMClass.java
ViewVC logotype

Diff of /classpath/vm/reference/java/lang/VMClass.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by mark, Sun Apr 25 12:03:01 2004 UTC revision 1.11 by jfrijters, Mon Apr 18 08:57:50 2005 UTC
# Line 185  final class VMClass Line 185  final class VMClass
185     * public and final, but not an interface.     * public and final, but not an interface.
186     *     *
187     * @param klass the Class object that's calling us     * @param klass the Class object that's calling us
188       * @param ignoreInnerClassesAttrib if set, return the real modifiers, not
189       * the ones specified in the InnerClasses attribute.
190     * @return the modifiers of this class     * @return the modifiers of this class
191     * @see Modifer     * @see Modifer
192     * @since 1.1     * @since 1.1
193     */     */
194    static native int getModifiers(Class klass);    static int getModifiers(Class klass, boolean ignoreInnerClassesAttrib)
195      {
196        return getModifiers(klass);
197      }
198    
199      private static native int getModifiers(Class klass);
200    
201    /**    /**
202     * If this is a nested or inner class, return the class that declared it.     * If this is a nested or inner class, return the class that declared it.

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26