emul/mini/src/main/java/java/lang/Class.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 04 Feb 2013 22:02:33 +0100
branchreflection
changeset 658 578cea5b4359
parent 588 6f864278604a
child 666 8338ab1991e6
permissions -rw-r--r--
Need to initialize the class before returning its $class structure
     1 /*
     2  * Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Oracle in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22  * or visit www.oracle.com if you need additional information or have any
    23  * questions.
    24  */
    25 
    26 package java.lang;
    27 
    28 import java.io.ByteArrayInputStream;
    29 import org.apidesign.bck2brwsr.emul.reflect.AnnotationImpl;
    30 import java.io.InputStream;
    31 import java.lang.annotation.Annotation;
    32 import java.lang.reflect.Field;
    33 import java.lang.reflect.Method;
    34 import java.lang.reflect.TypeVariable;
    35 import java.net.URL;
    36 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    37 import org.apidesign.bck2brwsr.emul.reflect.MethodImpl;
    38 
    39 /**
    40  * Instances of the class {@code Class} represent classes and
    41  * interfaces in a running Java application.  An enum is a kind of
    42  * class and an annotation is a kind of interface.  Every array also
    43  * belongs to a class that is reflected as a {@code Class} object
    44  * that is shared by all arrays with the same element type and number
    45  * of dimensions.  The primitive Java types ({@code boolean},
    46  * {@code byte}, {@code char}, {@code short},
    47  * {@code int}, {@code long}, {@code float}, and
    48  * {@code double}), and the keyword {@code void} are also
    49  * represented as {@code Class} objects.
    50  *
    51  * <p> {@code Class} has no public constructor. Instead {@code Class}
    52  * objects are constructed automatically by the Java Virtual Machine as classes
    53  * are loaded and by calls to the {@code defineClass} method in the class
    54  * loader.
    55  *
    56  * <p> The following example uses a {@code Class} object to print the
    57  * class name of an object:
    58  *
    59  * <p> <blockquote><pre>
    60  *     void printClassName(Object obj) {
    61  *         System.out.println("The class of " + obj +
    62  *                            " is " + obj.getClass().getName());
    63  *     }
    64  * </pre></blockquote>
    65  *
    66  * <p> It is also possible to get the {@code Class} object for a named
    67  * type (or for void) using a class literal.  See Section 15.8.2 of
    68  * <cite>The Java&trade; Language Specification</cite>.
    69  * For example:
    70  *
    71  * <p> <blockquote>
    72  *     {@code System.out.println("The name of class Foo is: "+Foo.class.getName());}
    73  * </blockquote>
    74  *
    75  * @param <T> the type of the class modeled by this {@code Class}
    76  * object.  For example, the type of {@code String.class} is {@code
    77  * Class<String>}.  Use {@code Class<?>} if the class being modeled is
    78  * unknown.
    79  *
    80  * @author  unascribed
    81  * @see     java.lang.ClassLoader#defineClass(byte[], int, int)
    82  * @since   JDK1.0
    83  */
    84 public final
    85     class Class<T> implements java.io.Serializable,
    86                               java.lang.reflect.GenericDeclaration,
    87                               java.lang.reflect.Type,
    88                               java.lang.reflect.AnnotatedElement {
    89     private static final int ANNOTATION= 0x00002000;
    90     private static final int ENUM      = 0x00004000;
    91     private static final int SYNTHETIC = 0x00001000;
    92 
    93     /*
    94      * Constructor. Only the Java Virtual Machine creates Class
    95      * objects.
    96      */
    97     private Class() {}
    98 
    99 
   100     /**
   101      * Converts the object to a string. The string representation is the
   102      * string "class" or "interface", followed by a space, and then by the
   103      * fully qualified name of the class in the format returned by
   104      * {@code getName}.  If this {@code Class} object represents a
   105      * primitive type, this method returns the name of the primitive type.  If
   106      * this {@code Class} object represents void this method returns
   107      * "void".
   108      *
   109      * @return a string representation of this class object.
   110      */
   111     public String toString() {
   112         return (isInterface() ? "interface " : (isPrimitive() ? "" : "class "))
   113             + getName();
   114     }
   115 
   116 
   117     /**
   118      * Returns the {@code Class} object associated with the class or
   119      * interface with the given string name.  Invoking this method is
   120      * equivalent to:
   121      *
   122      * <blockquote>
   123      *  {@code Class.forName(className, true, currentLoader)}
   124      * </blockquote>
   125      *
   126      * where {@code currentLoader} denotes the defining class loader of
   127      * the current class.
   128      *
   129      * <p> For example, the following code fragment returns the
   130      * runtime {@code Class} descriptor for the class named
   131      * {@code java.lang.Thread}:
   132      *
   133      * <blockquote>
   134      *   {@code Class t = Class.forName("java.lang.Thread")}
   135      * </blockquote>
   136      * <p>
   137      * A call to {@code forName("X")} causes the class named
   138      * {@code X} to be initialized.
   139      *
   140      * @param      className   the fully qualified name of the desired class.
   141      * @return     the {@code Class} object for the class with the
   142      *             specified name.
   143      * @exception LinkageError if the linkage fails
   144      * @exception ExceptionInInitializerError if the initialization provoked
   145      *            by this method fails
   146      * @exception ClassNotFoundException if the class cannot be located
   147      */
   148     public static Class<?> forName(String className)
   149     throws ClassNotFoundException {
   150         if (className.startsWith("[")) {
   151             Class<?> arrType = defineArray(className);
   152             Class<?> c = arrType;
   153             while (c != null && c.isArray()) {
   154                 c = c.getComponentType0(); // verify component type is sane
   155             }
   156             return arrType;
   157         }
   158         Class<?> c = loadCls(className, className.replace('.', '_'));
   159         if (c == null) {
   160             throw new ClassNotFoundException(className);
   161         }
   162         return c;
   163     }
   164 
   165 
   166     /**
   167      * Returns the {@code Class} object associated with the class or
   168      * interface with the given string name, using the given class loader.
   169      * Given the fully qualified name for a class or interface (in the same
   170      * format returned by {@code getName}) this method attempts to
   171      * locate, load, and link the class or interface.  The specified class
   172      * loader is used to load the class or interface.  If the parameter
   173      * {@code loader} is null, the class is loaded through the bootstrap
   174      * class loader.  The class is initialized only if the
   175      * {@code initialize} parameter is {@code true} and if it has
   176      * not been initialized earlier.
   177      *
   178      * <p> If {@code name} denotes a primitive type or void, an attempt
   179      * will be made to locate a user-defined class in the unnamed package whose
   180      * name is {@code name}. Therefore, this method cannot be used to
   181      * obtain any of the {@code Class} objects representing primitive
   182      * types or void.
   183      *
   184      * <p> If {@code name} denotes an array class, the component type of
   185      * the array class is loaded but not initialized.
   186      *
   187      * <p> For example, in an instance method the expression:
   188      *
   189      * <blockquote>
   190      *  {@code Class.forName("Foo")}
   191      * </blockquote>
   192      *
   193      * is equivalent to:
   194      *
   195      * <blockquote>
   196      *  {@code Class.forName("Foo", true, this.getClass().getClassLoader())}
   197      * </blockquote>
   198      *
   199      * Note that this method throws errors related to loading, linking or
   200      * initializing as specified in Sections 12.2, 12.3 and 12.4 of <em>The
   201      * Java Language Specification</em>.
   202      * Note that this method does not check whether the requested class
   203      * is accessible to its caller.
   204      *
   205      * <p> If the {@code loader} is {@code null}, and a security
   206      * manager is present, and the caller's class loader is not null, then this
   207      * method calls the security manager's {@code checkPermission} method
   208      * with a {@code RuntimePermission("getClassLoader")} permission to
   209      * ensure it's ok to access the bootstrap class loader.
   210      *
   211      * @param name       fully qualified name of the desired class
   212      * @param initialize whether the class must be initialized
   213      * @param loader     class loader from which the class must be loaded
   214      * @return           class object representing the desired class
   215      *
   216      * @exception LinkageError if the linkage fails
   217      * @exception ExceptionInInitializerError if the initialization provoked
   218      *            by this method fails
   219      * @exception ClassNotFoundException if the class cannot be located by
   220      *            the specified class loader
   221      *
   222      * @see       java.lang.Class#forName(String)
   223      * @see       java.lang.ClassLoader
   224      * @since     1.2
   225      */
   226     public static Class<?> forName(String name, boolean initialize,
   227                                    ClassLoader loader)
   228         throws ClassNotFoundException
   229     {
   230         return forName(name);
   231     }
   232     
   233     @JavaScriptBody(args = {"n", "c" }, body =
   234         "if (!vm[c]) {\n"
   235       + "  if (vm.loadClass) {\n"
   236       + "    vm.loadClass(n);\n"
   237       + "  }\n"
   238       + "  if (!vm[c]) return null;\n"
   239       + "}\n"
   240       + "vm[c](false);"
   241       + "return vm[c].$class;"
   242     )
   243     private static native Class<?> loadCls(String n, String c);
   244 
   245 
   246     /**
   247      * Creates a new instance of the class represented by this {@code Class}
   248      * object.  The class is instantiated as if by a {@code new}
   249      * expression with an empty argument list.  The class is initialized if it
   250      * has not already been initialized.
   251      *
   252      * <p>Note that this method propagates any exception thrown by the
   253      * nullary constructor, including a checked exception.  Use of
   254      * this method effectively bypasses the compile-time exception
   255      * checking that would otherwise be performed by the compiler.
   256      * The {@link
   257      * java.lang.reflect.Constructor#newInstance(java.lang.Object...)
   258      * Constructor.newInstance} method avoids this problem by wrapping
   259      * any exception thrown by the constructor in a (checked) {@link
   260      * java.lang.reflect.InvocationTargetException}.
   261      *
   262      * @return     a newly allocated instance of the class represented by this
   263      *             object.
   264      * @exception  IllegalAccessException  if the class or its nullary
   265      *               constructor is not accessible.
   266      * @exception  InstantiationException
   267      *               if this {@code Class} represents an abstract class,
   268      *               an interface, an array class, a primitive type, or void;
   269      *               or if the class has no nullary constructor;
   270      *               or if the instantiation fails for some other reason.
   271      * @exception  ExceptionInInitializerError if the initialization
   272      *               provoked by this method fails.
   273      * @exception  SecurityException
   274      *             If a security manager, <i>s</i>, is present and any of the
   275      *             following conditions is met:
   276      *
   277      *             <ul>
   278      *
   279      *             <li> invocation of
   280      *             {@link SecurityManager#checkMemberAccess
   281      *             s.checkMemberAccess(this, Member.PUBLIC)} denies
   282      *             creation of new instances of this class
   283      *
   284      *             <li> the caller's class loader is not the same as or an
   285      *             ancestor of the class loader for the current class and
   286      *             invocation of {@link SecurityManager#checkPackageAccess
   287      *             s.checkPackageAccess()} denies access to the package
   288      *             of this class
   289      *
   290      *             </ul>
   291      *
   292      */
   293     @JavaScriptBody(args = { "self", "illegal" }, body =
   294           "\nvar c = self.cnstr;"
   295         + "\nif (c['cons__V']) {"
   296         + "\n  if ((c.cons__V.access & 0x1) != 0) {"
   297         + "\n    var inst = c();"
   298         + "\n    c.cons__V.call(inst);"
   299         + "\n    return inst;"
   300         + "\n  }"
   301         + "\n  return illegal;"
   302         + "\n}"
   303         + "\nreturn null;"
   304     )
   305     private static native Object newInstance0(Class<?> self, Object illegal);
   306     
   307     public T newInstance()
   308         throws InstantiationException, IllegalAccessException
   309     {
   310         Object illegal = new Object();
   311         Object inst = newInstance0(this, illegal);
   312         if (inst == null) {
   313             throw new InstantiationException(getName());
   314         }
   315         if (inst == illegal) {
   316             throw new IllegalAccessException();
   317         }
   318         return (T)inst;
   319     }
   320 
   321     /**
   322      * Determines if the specified {@code Object} is assignment-compatible
   323      * with the object represented by this {@code Class}.  This method is
   324      * the dynamic equivalent of the Java language {@code instanceof}
   325      * operator. The method returns {@code true} if the specified
   326      * {@code Object} argument is non-null and can be cast to the
   327      * reference type represented by this {@code Class} object without
   328      * raising a {@code ClassCastException.} It returns {@code false}
   329      * otherwise.
   330      *
   331      * <p> Specifically, if this {@code Class} object represents a
   332      * declared class, this method returns {@code true} if the specified
   333      * {@code Object} argument is an instance of the represented class (or
   334      * of any of its subclasses); it returns {@code false} otherwise. If
   335      * this {@code Class} object represents an array class, this method
   336      * returns {@code true} if the specified {@code Object} argument
   337      * can be converted to an object of the array class by an identity
   338      * conversion or by a widening reference conversion; it returns
   339      * {@code false} otherwise. If this {@code Class} object
   340      * represents an interface, this method returns {@code true} if the
   341      * class or any superclass of the specified {@code Object} argument
   342      * implements this interface; it returns {@code false} otherwise. If
   343      * this {@code Class} object represents a primitive type, this method
   344      * returns {@code false}.
   345      *
   346      * @param   obj the object to check
   347      * @return  true if {@code obj} is an instance of this class
   348      *
   349      * @since JDK1.1
   350      */
   351     public boolean isInstance(Object obj) {
   352         if (isArray()) {
   353             return isAssignableFrom(obj.getClass());
   354         }
   355         
   356         String prop = "$instOf_" + getName().replace('.', '_');
   357         return hasProperty(obj, prop);
   358     }
   359     
   360     @JavaScriptBody(args = { "who", "prop" }, body = 
   361         "if (who[prop]) return true; else return false;"
   362     )
   363     private static native boolean hasProperty(Object who, String prop);
   364 
   365 
   366     /**
   367      * Determines if the class or interface represented by this
   368      * {@code Class} object is either the same as, or is a superclass or
   369      * superinterface of, the class or interface represented by the specified
   370      * {@code Class} parameter. It returns {@code true} if so;
   371      * otherwise it returns {@code false}. If this {@code Class}
   372      * object represents a primitive type, this method returns
   373      * {@code true} if the specified {@code Class} parameter is
   374      * exactly this {@code Class} object; otherwise it returns
   375      * {@code false}.
   376      *
   377      * <p> Specifically, this method tests whether the type represented by the
   378      * specified {@code Class} parameter can be converted to the type
   379      * represented by this {@code Class} object via an identity conversion
   380      * or via a widening reference conversion. See <em>The Java Language
   381      * Specification</em>, sections 5.1.1 and 5.1.4 , for details.
   382      *
   383      * @param cls the {@code Class} object to be checked
   384      * @return the {@code boolean} value indicating whether objects of the
   385      * type {@code cls} can be assigned to objects of this class
   386      * @exception NullPointerException if the specified Class parameter is
   387      *            null.
   388      * @since JDK1.1
   389      */
   390     public boolean isAssignableFrom(Class<?> cls) {
   391         if (this == cls) {
   392             return true;
   393         }
   394         
   395         if (isArray()) {
   396             final Class<?> cmpType = cls.getComponentType();
   397             if (isPrimitive()) {
   398                 return this == cmpType;
   399             }
   400             return cmpType != null && getComponentType().isAssignableFrom(cmpType);
   401         }
   402         String prop = "$instOf_" + getName().replace('.', '_');
   403         return hasProperty(cls, prop);
   404     }
   405 
   406 
   407     /**
   408      * Determines if the specified {@code Class} object represents an
   409      * interface type.
   410      *
   411      * @return  {@code true} if this object represents an interface;
   412      *          {@code false} otherwise.
   413      */
   414     public boolean isInterface() {
   415         return (getAccess() & 0x200) != 0;
   416     }
   417     
   418     @JavaScriptBody(args = {}, body = "return this.access;")
   419     private native int getAccess();
   420 
   421 
   422     /**
   423      * Determines if this {@code Class} object represents an array class.
   424      *
   425      * @return  {@code true} if this object represents an array class;
   426      *          {@code false} otherwise.
   427      * @since   JDK1.1
   428      */
   429     public boolean isArray() {
   430         return hasProperty(this, "array"); // NOI18N
   431     }
   432 
   433 
   434     /**
   435      * Determines if the specified {@code Class} object represents a
   436      * primitive type.
   437      *
   438      * <p> There are nine predefined {@code Class} objects to represent
   439      * the eight primitive types and void.  These are created by the Java
   440      * Virtual Machine, and have the same names as the primitive types that
   441      * they represent, namely {@code boolean}, {@code byte},
   442      * {@code char}, {@code short}, {@code int},
   443      * {@code long}, {@code float}, and {@code double}.
   444      *
   445      * <p> These objects may only be accessed via the following public static
   446      * final variables, and are the only {@code Class} objects for which
   447      * this method returns {@code true}.
   448      *
   449      * @return true if and only if this class represents a primitive type
   450      *
   451      * @see     java.lang.Boolean#TYPE
   452      * @see     java.lang.Character#TYPE
   453      * @see     java.lang.Byte#TYPE
   454      * @see     java.lang.Short#TYPE
   455      * @see     java.lang.Integer#TYPE
   456      * @see     java.lang.Long#TYPE
   457      * @see     java.lang.Float#TYPE
   458      * @see     java.lang.Double#TYPE
   459      * @see     java.lang.Void#TYPE
   460      * @since JDK1.1
   461      */
   462     @JavaScriptBody(args = {}, body = 
   463            "if (this.primitive) return true;"
   464         + "else return false;"
   465     )
   466     public native boolean isPrimitive();
   467 
   468     /**
   469      * Returns true if this {@code Class} object represents an annotation
   470      * type.  Note that if this method returns true, {@link #isInterface()}
   471      * would also return true, as all annotation types are also interfaces.
   472      *
   473      * @return {@code true} if this class object represents an annotation
   474      *      type; {@code false} otherwise
   475      * @since 1.5
   476      */
   477     public boolean isAnnotation() {
   478         return (getModifiers() & ANNOTATION) != 0;
   479     }
   480 
   481     /**
   482      * Returns {@code true} if this class is a synthetic class;
   483      * returns {@code false} otherwise.
   484      * @return {@code true} if and only if this class is a synthetic class as
   485      *         defined by the Java Language Specification.
   486      * @since 1.5
   487      */
   488     public boolean isSynthetic() {
   489         return (getModifiers() & SYNTHETIC) != 0;
   490     }
   491 
   492     /**
   493      * Returns the  name of the entity (class, interface, array class,
   494      * primitive type, or void) represented by this {@code Class} object,
   495      * as a {@code String}.
   496      *
   497      * <p> If this class object represents a reference type that is not an
   498      * array type then the binary name of the class is returned, as specified
   499      * by
   500      * <cite>The Java&trade; Language Specification</cite>.
   501      *
   502      * <p> If this class object represents a primitive type or void, then the
   503      * name returned is a {@code String} equal to the Java language
   504      * keyword corresponding to the primitive type or void.
   505      *
   506      * <p> If this class object represents a class of arrays, then the internal
   507      * form of the name consists of the name of the element type preceded by
   508      * one or more '{@code [}' characters representing the depth of the array
   509      * nesting.  The encoding of element type names is as follows:
   510      *
   511      * <blockquote><table summary="Element types and encodings">
   512      * <tr><th> Element Type <th> &nbsp;&nbsp;&nbsp; <th> Encoding
   513      * <tr><td> boolean      <td> &nbsp;&nbsp;&nbsp; <td align=center> Z
   514      * <tr><td> byte         <td> &nbsp;&nbsp;&nbsp; <td align=center> B
   515      * <tr><td> char         <td> &nbsp;&nbsp;&nbsp; <td align=center> C
   516      * <tr><td> class or interface
   517      *                       <td> &nbsp;&nbsp;&nbsp; <td align=center> L<i>classname</i>;
   518      * <tr><td> double       <td> &nbsp;&nbsp;&nbsp; <td align=center> D
   519      * <tr><td> float        <td> &nbsp;&nbsp;&nbsp; <td align=center> F
   520      * <tr><td> int          <td> &nbsp;&nbsp;&nbsp; <td align=center> I
   521      * <tr><td> long         <td> &nbsp;&nbsp;&nbsp; <td align=center> J
   522      * <tr><td> short        <td> &nbsp;&nbsp;&nbsp; <td align=center> S
   523      * </table></blockquote>
   524      *
   525      * <p> The class or interface name <i>classname</i> is the binary name of
   526      * the class specified above.
   527      *
   528      * <p> Examples:
   529      * <blockquote><pre>
   530      * String.class.getName()
   531      *     returns "java.lang.String"
   532      * byte.class.getName()
   533      *     returns "byte"
   534      * (new Object[3]).getClass().getName()
   535      *     returns "[Ljava.lang.Object;"
   536      * (new int[3][4][5][6][7][8][9]).getClass().getName()
   537      *     returns "[[[[[[[I"
   538      * </pre></blockquote>
   539      *
   540      * @return  the name of the class or interface
   541      *          represented by this object.
   542      */
   543     public String getName() {
   544         return jvmName().replace('/', '.');
   545     }
   546 
   547     @JavaScriptBody(args = {}, body = "return this.jvmName;")
   548     private native String jvmName();
   549 
   550     
   551     /**
   552      * Returns an array of {@code TypeVariable} objects that represent the
   553      * type variables declared by the generic declaration represented by this
   554      * {@code GenericDeclaration} object, in declaration order.  Returns an
   555      * array of length 0 if the underlying generic declaration declares no type
   556      * variables.
   557      *
   558      * @return an array of {@code TypeVariable} objects that represent
   559      *     the type variables declared by this generic declaration
   560      * @throws java.lang.reflect.GenericSignatureFormatError if the generic
   561      *     signature of this generic declaration does not conform to
   562      *     the format specified in
   563      *     <cite>The Java&trade; Virtual Machine Specification</cite>
   564      * @since 1.5
   565      */
   566     public TypeVariable<Class<T>>[] getTypeParameters() {
   567         throw new UnsupportedOperationException();
   568     }
   569  
   570     /**
   571      * Returns the {@code Class} representing the superclass of the entity
   572      * (class, interface, primitive type or void) represented by this
   573      * {@code Class}.  If this {@code Class} represents either the
   574      * {@code Object} class, an interface, a primitive type, or void, then
   575      * null is returned.  If this object represents an array class then the
   576      * {@code Class} object representing the {@code Object} class is
   577      * returned.
   578      *
   579      * @return the superclass of the class represented by this object.
   580      */
   581     @JavaScriptBody(args = {}, body = "return this.superclass;")
   582     public native Class<? super T> getSuperclass();
   583 
   584     /**
   585      * Returns the Java language modifiers for this class or interface, encoded
   586      * in an integer. The modifiers consist of the Java Virtual Machine's
   587      * constants for {@code public}, {@code protected},
   588      * {@code private}, {@code final}, {@code static},
   589      * {@code abstract} and {@code interface}; they should be decoded
   590      * using the methods of class {@code Modifier}.
   591      *
   592      * <p> If the underlying class is an array class, then its
   593      * {@code public}, {@code private} and {@code protected}
   594      * modifiers are the same as those of its component type.  If this
   595      * {@code Class} represents a primitive type or void, its
   596      * {@code public} modifier is always {@code true}, and its
   597      * {@code protected} and {@code private} modifiers are always
   598      * {@code false}. If this object represents an array class, a
   599      * primitive type or void, then its {@code final} modifier is always
   600      * {@code true} and its interface modifier is always
   601      * {@code false}. The values of its other modifiers are not determined
   602      * by this specification.
   603      *
   604      * <p> The modifier encodings are defined in <em>The Java Virtual Machine
   605      * Specification</em>, table 4.1.
   606      *
   607      * @return the {@code int} representing the modifiers for this class
   608      * @see     java.lang.reflect.Modifier
   609      * @since JDK1.1
   610      */
   611     public int getModifiers() {
   612         return getAccess();
   613     }
   614 
   615 
   616     /**
   617      * Returns the simple name of the underlying class as given in the
   618      * source code. Returns an empty string if the underlying class is
   619      * anonymous.
   620      *
   621      * <p>The simple name of an array is the simple name of the
   622      * component type with "[]" appended.  In particular the simple
   623      * name of an array whose component type is anonymous is "[]".
   624      *
   625      * @return the simple name of the underlying class
   626      * @since 1.5
   627      */
   628     public String getSimpleName() {
   629         if (isArray())
   630             return getComponentType().getSimpleName()+"[]";
   631 
   632         String simpleName = getSimpleBinaryName();
   633         if (simpleName == null) { // top level class
   634             simpleName = getName();
   635             return simpleName.substring(simpleName.lastIndexOf(".")+1); // strip the package name
   636         }
   637         // According to JLS3 "Binary Compatibility" (13.1) the binary
   638         // name of non-package classes (not top level) is the binary
   639         // name of the immediately enclosing class followed by a '$' followed by:
   640         // (for nested and inner classes): the simple name.
   641         // (for local classes): 1 or more digits followed by the simple name.
   642         // (for anonymous classes): 1 or more digits.
   643 
   644         // Since getSimpleBinaryName() will strip the binary name of
   645         // the immediatly enclosing class, we are now looking at a
   646         // string that matches the regular expression "\$[0-9]*"
   647         // followed by a simple name (considering the simple of an
   648         // anonymous class to be the empty string).
   649 
   650         // Remove leading "\$[0-9]*" from the name
   651         int length = simpleName.length();
   652         if (length < 1 || simpleName.charAt(0) != '$')
   653             throw new IllegalStateException("Malformed class name");
   654         int index = 1;
   655         while (index < length && isAsciiDigit(simpleName.charAt(index)))
   656             index++;
   657         // Eventually, this is the empty string iff this is an anonymous class
   658         return simpleName.substring(index);
   659     }
   660 
   661     /**
   662      * Returns the "simple binary name" of the underlying class, i.e.,
   663      * the binary name without the leading enclosing class name.
   664      * Returns {@code null} if the underlying class is a top level
   665      * class.
   666      */
   667     private String getSimpleBinaryName() {
   668         Class<?> enclosingClass = null; // XXX getEnclosingClass();
   669         if (enclosingClass == null) // top level class
   670             return null;
   671         // Otherwise, strip the enclosing class' name
   672         try {
   673             return getName().substring(enclosingClass.getName().length());
   674         } catch (IndexOutOfBoundsException ex) {
   675             throw new IllegalStateException("Malformed class name");
   676         }
   677     }
   678 
   679     /**
   680      * Returns an array containing {@code Field} objects reflecting all
   681      * the accessible public fields of the class or interface represented by
   682      * this {@code Class} object.  The elements in the array returned are
   683      * not sorted and are not in any particular order.  This method returns an
   684      * array of length 0 if the class or interface has no accessible public
   685      * fields, or if it represents an array class, a primitive type, or void.
   686      *
   687      * <p> Specifically, if this {@code Class} object represents a class,
   688      * this method returns the public fields of this class and of all its
   689      * superclasses.  If this {@code Class} object represents an
   690      * interface, this method returns the fields of this interface and of all
   691      * its superinterfaces.
   692      *
   693      * <p> The implicit length field for array class is not reflected by this
   694      * method. User code should use the methods of class {@code Array} to
   695      * manipulate arrays.
   696      *
   697      * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.3.
   698      *
   699      * @return the array of {@code Field} objects representing the
   700      * public fields
   701      * @exception  SecurityException
   702      *             If a security manager, <i>s</i>, is present and any of the
   703      *             following conditions is met:
   704      *
   705      *             <ul>
   706      *
   707      *             <li> invocation of
   708      *             {@link SecurityManager#checkMemberAccess
   709      *             s.checkMemberAccess(this, Member.PUBLIC)} denies
   710      *             access to the fields within this class
   711      *
   712      *             <li> the caller's class loader is not the same as or an
   713      *             ancestor of the class loader for the current class and
   714      *             invocation of {@link SecurityManager#checkPackageAccess
   715      *             s.checkPackageAccess()} denies access to the package
   716      *             of this class
   717      *
   718      *             </ul>
   719      *
   720      * @since JDK1.1
   721      */
   722     public Field[] getFields() throws SecurityException {
   723         throw new SecurityException();
   724     }
   725 
   726     /**
   727      * Returns an array containing {@code Method} objects reflecting all
   728      * the public <em>member</em> methods of the class or interface represented
   729      * by this {@code Class} object, including those declared by the class
   730      * or interface and those inherited from superclasses and
   731      * superinterfaces.  Array classes return all the (public) member methods
   732      * inherited from the {@code Object} class.  The elements in the array
   733      * returned are not sorted and are not in any particular order.  This
   734      * method returns an array of length 0 if this {@code Class} object
   735      * represents a class or interface that has no public member methods, or if
   736      * this {@code Class} object represents a primitive type or void.
   737      *
   738      * <p> The class initialization method {@code <clinit>} is not
   739      * included in the returned array. If the class declares multiple public
   740      * member methods with the same parameter types, they are all included in
   741      * the returned array.
   742      *
   743      * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.4.
   744      *
   745      * @return the array of {@code Method} objects representing the
   746      * public methods of this class
   747      * @exception  SecurityException
   748      *             If a security manager, <i>s</i>, is present and any of the
   749      *             following conditions is met:
   750      *
   751      *             <ul>
   752      *
   753      *             <li> invocation of
   754      *             {@link SecurityManager#checkMemberAccess
   755      *             s.checkMemberAccess(this, Member.PUBLIC)} denies
   756      *             access to the methods within this class
   757      *
   758      *             <li> the caller's class loader is not the same as or an
   759      *             ancestor of the class loader for the current class and
   760      *             invocation of {@link SecurityManager#checkPackageAccess
   761      *             s.checkPackageAccess()} denies access to the package
   762      *             of this class
   763      *
   764      *             </ul>
   765      *
   766      * @since JDK1.1
   767      */
   768     public Method[] getMethods() throws SecurityException {
   769         return MethodImpl.findMethods(this, 0x01);
   770     }
   771 
   772     /**
   773      * Returns a {@code Field} object that reflects the specified public
   774      * member field of the class or interface represented by this
   775      * {@code Class} object. The {@code name} parameter is a
   776      * {@code String} specifying the simple name of the desired field.
   777      *
   778      * <p> The field to be reflected is determined by the algorithm that
   779      * follows.  Let C be the class represented by this object:
   780      * <OL>
   781      * <LI> If C declares a public field with the name specified, that is the
   782      *      field to be reflected.</LI>
   783      * <LI> If no field was found in step 1 above, this algorithm is applied
   784      *      recursively to each direct superinterface of C. The direct
   785      *      superinterfaces are searched in the order they were declared.</LI>
   786      * <LI> If no field was found in steps 1 and 2 above, and C has a
   787      *      superclass S, then this algorithm is invoked recursively upon S.
   788      *      If C has no superclass, then a {@code NoSuchFieldException}
   789      *      is thrown.</LI>
   790      * </OL>
   791      *
   792      * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.3.
   793      *
   794      * @param name the field name
   795      * @return  the {@code Field} object of this class specified by
   796      * {@code name}
   797      * @exception NoSuchFieldException if a field with the specified name is
   798      *              not found.
   799      * @exception NullPointerException if {@code name} is {@code null}
   800      * @exception  SecurityException
   801      *             If a security manager, <i>s</i>, is present and any of the
   802      *             following conditions is met:
   803      *
   804      *             <ul>
   805      *
   806      *             <li> invocation of
   807      *             {@link SecurityManager#checkMemberAccess
   808      *             s.checkMemberAccess(this, Member.PUBLIC)} denies
   809      *             access to the field
   810      *
   811      *             <li> the caller's class loader is not the same as or an
   812      *             ancestor of the class loader for the current class and
   813      *             invocation of {@link SecurityManager#checkPackageAccess
   814      *             s.checkPackageAccess()} denies access to the package
   815      *             of this class
   816      *
   817      *             </ul>
   818      *
   819      * @since JDK1.1
   820      */
   821     public Field getField(String name)
   822         throws SecurityException {
   823         throw new SecurityException();
   824     }
   825     
   826     
   827     /**
   828      * Returns a {@code Method} object that reflects the specified public
   829      * member method of the class or interface represented by this
   830      * {@code Class} object. The {@code name} parameter is a
   831      * {@code String} specifying the simple name of the desired method. The
   832      * {@code parameterTypes} parameter is an array of {@code Class}
   833      * objects that identify the method's formal parameter types, in declared
   834      * order. If {@code parameterTypes} is {@code null}, it is
   835      * treated as if it were an empty array.
   836      *
   837      * <p> If the {@code name} is "{@code <init>};"or "{@code <clinit>}" a
   838      * {@code NoSuchMethodException} is raised. Otherwise, the method to
   839      * be reflected is determined by the algorithm that follows.  Let C be the
   840      * class represented by this object:
   841      * <OL>
   842      * <LI> C is searched for any <I>matching methods</I>. If no matching
   843      *      method is found, the algorithm of step 1 is invoked recursively on
   844      *      the superclass of C.</LI>
   845      * <LI> If no method was found in step 1 above, the superinterfaces of C
   846      *      are searched for a matching method. If any such method is found, it
   847      *      is reflected.</LI>
   848      * </OL>
   849      *
   850      * To find a matching method in a class C:&nbsp; If C declares exactly one
   851      * public method with the specified name and exactly the same formal
   852      * parameter types, that is the method reflected. If more than one such
   853      * method is found in C, and one of these methods has a return type that is
   854      * more specific than any of the others, that method is reflected;
   855      * otherwise one of the methods is chosen arbitrarily.
   856      *
   857      * <p>Note that there may be more than one matching method in a
   858      * class because while the Java language forbids a class to
   859      * declare multiple methods with the same signature but different
   860      * return types, the Java virtual machine does not.  This
   861      * increased flexibility in the virtual machine can be used to
   862      * implement various language features.  For example, covariant
   863      * returns can be implemented with {@linkplain
   864      * java.lang.reflect.Method#isBridge bridge methods}; the bridge
   865      * method and the method being overridden would have the same
   866      * signature but different return types.
   867      *
   868      * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.4.
   869      *
   870      * @param name the name of the method
   871      * @param parameterTypes the list of parameters
   872      * @return the {@code Method} object that matches the specified
   873      * {@code name} and {@code parameterTypes}
   874      * @exception NoSuchMethodException if a matching method is not found
   875      *            or if the name is "&lt;init&gt;"or "&lt;clinit&gt;".
   876      * @exception NullPointerException if {@code name} is {@code null}
   877      * @exception  SecurityException
   878      *             If a security manager, <i>s</i>, is present and any of the
   879      *             following conditions is met:
   880      *
   881      *             <ul>
   882      *
   883      *             <li> invocation of
   884      *             {@link SecurityManager#checkMemberAccess
   885      *             s.checkMemberAccess(this, Member.PUBLIC)} denies
   886      *             access to the method
   887      *
   888      *             <li> the caller's class loader is not the same as or an
   889      *             ancestor of the class loader for the current class and
   890      *             invocation of {@link SecurityManager#checkPackageAccess
   891      *             s.checkPackageAccess()} denies access to the package
   892      *             of this class
   893      *
   894      *             </ul>
   895      *
   896      * @since JDK1.1
   897      */
   898     public Method getMethod(String name, Class<?>... parameterTypes)
   899         throws SecurityException, NoSuchMethodException {
   900         Method m = MethodImpl.findMethod(this, name, parameterTypes);
   901         if (m == null) {
   902             StringBuilder sb = new StringBuilder();
   903             sb.append(getName()).append('.').append(name).append('(');
   904             String sep = "";
   905             for (int i = 0; i < parameterTypes.length; i++) {
   906                 sb.append(sep).append(parameterTypes[i].getName());
   907                 sep = ", ";
   908             }
   909             sb.append(')');
   910             throw new NoSuchMethodException(sb.toString());
   911         }
   912         return m;
   913     }
   914 
   915     /**
   916      * Character.isDigit answers {@code true} to some non-ascii
   917      * digits.  This one does not.
   918      */
   919     private static boolean isAsciiDigit(char c) {
   920         return '0' <= c && c <= '9';
   921     }
   922 
   923     /**
   924      * Returns the canonical name of the underlying class as
   925      * defined by the Java Language Specification.  Returns null if
   926      * the underlying class does not have a canonical name (i.e., if
   927      * it is a local or anonymous class or an array whose component
   928      * type does not have a canonical name).
   929      * @return the canonical name of the underlying class if it exists, and
   930      * {@code null} otherwise.
   931      * @since 1.5
   932      */
   933     public String getCanonicalName() {
   934         if (isArray()) {
   935             String canonicalName = getComponentType().getCanonicalName();
   936             if (canonicalName != null)
   937                 return canonicalName + "[]";
   938             else
   939                 return null;
   940         }
   941 //        if (isLocalOrAnonymousClass())
   942 //            return null;
   943 //        Class<?> enclosingClass = getEnclosingClass();
   944         Class<?> enclosingClass = null;
   945         if (enclosingClass == null) { // top level class
   946             return getName();
   947         } else {
   948             String enclosingName = enclosingClass.getCanonicalName();
   949             if (enclosingName == null)
   950                 return null;
   951             return enclosingName + "." + getSimpleName();
   952         }
   953     }
   954 
   955     /**
   956      * Finds a resource with a given name.  The rules for searching resources
   957      * associated with a given class are implemented by the defining
   958      * {@linkplain ClassLoader class loader} of the class.  This method
   959      * delegates to this object's class loader.  If this object was loaded by
   960      * the bootstrap class loader, the method delegates to {@link
   961      * ClassLoader#getSystemResourceAsStream}.
   962      *
   963      * <p> Before delegation, an absolute resource name is constructed from the
   964      * given resource name using this algorithm:
   965      *
   966      * <ul>
   967      *
   968      * <li> If the {@code name} begins with a {@code '/'}
   969      * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
   970      * portion of the {@code name} following the {@code '/'}.
   971      *
   972      * <li> Otherwise, the absolute name is of the following form:
   973      *
   974      * <blockquote>
   975      *   {@code modified_package_name/name}
   976      * </blockquote>
   977      *
   978      * <p> Where the {@code modified_package_name} is the package name of this
   979      * object with {@code '/'} substituted for {@code '.'}
   980      * (<tt>'&#92;u002e'</tt>).
   981      *
   982      * </ul>
   983      *
   984      * @param  name name of the desired resource
   985      * @return      A {@link java.io.InputStream} object or {@code null} if
   986      *              no resource with this name is found
   987      * @throws  NullPointerException If {@code name} is {@code null}
   988      * @since  JDK1.1
   989      */
   990      public InputStream getResourceAsStream(String name) {
   991         name = resolveName(name);
   992         byte[] arr = getResourceAsStream0(name);
   993         return arr == null ? null : new ByteArrayInputStream(arr);
   994      }
   995      
   996      @JavaScriptBody(args = "name", body = 
   997          "return (vm.loadBytes) ? vm.loadBytes(name) : null;"
   998      )
   999      private static native byte[] getResourceAsStream0(String name);
  1000 
  1001     /**
  1002      * Finds a resource with a given name.  The rules for searching resources
  1003      * associated with a given class are implemented by the defining
  1004      * {@linkplain ClassLoader class loader} of the class.  This method
  1005      * delegates to this object's class loader.  If this object was loaded by
  1006      * the bootstrap class loader, the method delegates to {@link
  1007      * ClassLoader#getSystemResource}.
  1008      *
  1009      * <p> Before delegation, an absolute resource name is constructed from the
  1010      * given resource name using this algorithm:
  1011      *
  1012      * <ul>
  1013      *
  1014      * <li> If the {@code name} begins with a {@code '/'}
  1015      * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
  1016      * portion of the {@code name} following the {@code '/'}.
  1017      *
  1018      * <li> Otherwise, the absolute name is of the following form:
  1019      *
  1020      * <blockquote>
  1021      *   {@code modified_package_name/name}
  1022      * </blockquote>
  1023      *
  1024      * <p> Where the {@code modified_package_name} is the package name of this
  1025      * object with {@code '/'} substituted for {@code '.'}
  1026      * (<tt>'&#92;u002e'</tt>).
  1027      *
  1028      * </ul>
  1029      *
  1030      * @param  name name of the desired resource
  1031      * @return      A  {@link java.net.URL} object or {@code null} if no
  1032      *              resource with this name is found
  1033      * @since  JDK1.1
  1034      */
  1035     public java.net.URL getResource(String name) {
  1036         InputStream is = getResourceAsStream(name);
  1037         return is == null ? null : newResourceURL(URL.class, "res:/" + name, is);
  1038     }
  1039     
  1040     @JavaScriptBody(args = { "url", "spec", "is" }, body = 
  1041         "var u = url.cnstr(true);\n"
  1042       + "u.constructor.cons__VLjava_lang_String_2Ljava_io_InputStream_2.call(u, spec, is);\n"
  1043       + "return u;"
  1044     )
  1045     private static native URL newResourceURL(Class<URL> url, String spec, InputStream is);
  1046 
  1047    /**
  1048      * Add a package name prefix if the name is not absolute Remove leading "/"
  1049      * if name is absolute
  1050      */
  1051     private String resolveName(String name) {
  1052         if (name == null) {
  1053             return name;
  1054         }
  1055         if (!name.startsWith("/")) {
  1056             Class<?> c = this;
  1057             while (c.isArray()) {
  1058                 c = c.getComponentType();
  1059             }
  1060             String baseName = c.getName();
  1061             int index = baseName.lastIndexOf('.');
  1062             if (index != -1) {
  1063                 name = baseName.substring(0, index).replace('.', '/')
  1064                     +"/"+name;
  1065             }
  1066         } else {
  1067             name = name.substring(1);
  1068         }
  1069         return name;
  1070     }
  1071     
  1072     /**
  1073      * Returns the class loader for the class.  Some implementations may use
  1074      * null to represent the bootstrap class loader. This method will return
  1075      * null in such implementations if this class was loaded by the bootstrap
  1076      * class loader.
  1077      *
  1078      * <p> If a security manager is present, and the caller's class loader is
  1079      * not null and the caller's class loader is not the same as or an ancestor of
  1080      * the class loader for the class whose class loader is requested, then
  1081      * this method calls the security manager's {@code checkPermission}
  1082      * method with a {@code RuntimePermission("getClassLoader")}
  1083      * permission to ensure it's ok to access the class loader for the class.
  1084      *
  1085      * <p>If this object
  1086      * represents a primitive type or void, null is returned.
  1087      *
  1088      * @return  the class loader that loaded the class or interface
  1089      *          represented by this object.
  1090      * @throws SecurityException
  1091      *    if a security manager exists and its
  1092      *    {@code checkPermission} method denies
  1093      *    access to the class loader for the class.
  1094      * @see java.lang.ClassLoader
  1095      * @see SecurityManager#checkPermission
  1096      * @see java.lang.RuntimePermission
  1097      */
  1098     public ClassLoader getClassLoader() {
  1099         throw new SecurityException();
  1100     }
  1101     
  1102     /**
  1103      * Returns the {@code Class} representing the component type of an
  1104      * array.  If this class does not represent an array class this method
  1105      * returns null.
  1106      *
  1107      * @return the {@code Class} representing the component type of this
  1108      * class if this class is an array
  1109      * @see     java.lang.reflect.Array
  1110      * @since JDK1.1
  1111      */
  1112     public Class<?> getComponentType() {
  1113         if (isArray()) {
  1114             try {
  1115                 return getComponentType0();
  1116             } catch (ClassNotFoundException cnfe) {
  1117                 throw new IllegalStateException(cnfe);
  1118             }
  1119         }
  1120         return null;
  1121     }
  1122 
  1123     private Class<?> getComponentType0() throws ClassNotFoundException {
  1124         String n = getName().substring(1);
  1125         switch (n.charAt(0)) {
  1126             case 'L': 
  1127                 n = n.substring(1, n.length() - 1);
  1128                 return Class.forName(n);
  1129             case 'I':
  1130                 return Integer.TYPE;
  1131             case 'J':
  1132                 return Long.TYPE;
  1133             case 'D':
  1134                 return Double.TYPE;
  1135             case 'F':
  1136                 return Float.TYPE;
  1137             case 'B':
  1138                 return Byte.TYPE;
  1139             case 'Z':
  1140                 return Boolean.TYPE;
  1141             case 'S':
  1142                 return Short.TYPE;
  1143             case 'V':
  1144                 return Void.TYPE;
  1145             case 'C':
  1146                 return Character.TYPE;
  1147             case '[':
  1148                 return defineArray(n);
  1149             default:
  1150                 throw new ClassNotFoundException("Unknown component type of " + getName());
  1151         }
  1152     }
  1153     
  1154     @JavaScriptBody(args = { "sig" }, body = 
  1155         "var c = Array[sig];\n" +
  1156         "if (c) return c;\n" +
  1157         "c = vm.java_lang_Class(true);\n" +
  1158         "c.jvmName = sig;\n" +
  1159         "c.superclass = vm.java_lang_Object(false).$class;\n" +
  1160         "c.array = true;\n" +
  1161         "Array[sig] = c;\n" +
  1162         "return c;"
  1163     )
  1164     private static native Class<?> defineArray(String sig);
  1165     
  1166     /**
  1167      * Returns true if and only if this class was declared as an enum in the
  1168      * source code.
  1169      *
  1170      * @return true if and only if this class was declared as an enum in the
  1171      *     source code
  1172      * @since 1.5
  1173      */
  1174     public boolean isEnum() {
  1175         // An enum must both directly extend java.lang.Enum and have
  1176         // the ENUM bit set; classes for specialized enum constants
  1177         // don't do the former.
  1178         return (this.getModifiers() & ENUM) != 0 &&
  1179         this.getSuperclass() == java.lang.Enum.class;
  1180     }
  1181 
  1182     /**
  1183      * Casts an object to the class or interface represented
  1184      * by this {@code Class} object.
  1185      *
  1186      * @param obj the object to be cast
  1187      * @return the object after casting, or null if obj is null
  1188      *
  1189      * @throws ClassCastException if the object is not
  1190      * null and is not assignable to the type T.
  1191      *
  1192      * @since 1.5
  1193      */
  1194     public T cast(Object obj) {
  1195         if (obj != null && !isInstance(obj))
  1196             throw new ClassCastException(cannotCastMsg(obj));
  1197         return (T) obj;
  1198     }
  1199 
  1200     private String cannotCastMsg(Object obj) {
  1201         return "Cannot cast " + obj.getClass().getName() + " to " + getName();
  1202     }
  1203 
  1204     /**
  1205      * Casts this {@code Class} object to represent a subclass of the class
  1206      * represented by the specified class object.  Checks that that the cast
  1207      * is valid, and throws a {@code ClassCastException} if it is not.  If
  1208      * this method succeeds, it always returns a reference to this class object.
  1209      *
  1210      * <p>This method is useful when a client needs to "narrow" the type of
  1211      * a {@code Class} object to pass it to an API that restricts the
  1212      * {@code Class} objects that it is willing to accept.  A cast would
  1213      * generate a compile-time warning, as the correctness of the cast
  1214      * could not be checked at runtime (because generic types are implemented
  1215      * by erasure).
  1216      *
  1217      * @return this {@code Class} object, cast to represent a subclass of
  1218      *    the specified class object.
  1219      * @throws ClassCastException if this {@code Class} object does not
  1220      *    represent a subclass of the specified class (here "subclass" includes
  1221      *    the class itself).
  1222      * @since 1.5
  1223      */
  1224     public <U> Class<? extends U> asSubclass(Class<U> clazz) {
  1225         if (clazz.isAssignableFrom(this))
  1226             return (Class<? extends U>) this;
  1227         else
  1228             throw new ClassCastException(this.toString());
  1229     }
  1230 
  1231     @JavaScriptBody(args = { "ac" }, 
  1232         body = 
  1233           "if (this.anno) {"
  1234         + "  return this.anno['L' + ac.jvmName + ';'];"
  1235         + "} else return null;"
  1236     )
  1237     private Object getAnnotationData(Class<?> annotationClass) {
  1238         throw new UnsupportedOperationException();
  1239     }
  1240     /**
  1241      * @throws NullPointerException {@inheritDoc}
  1242      * @since 1.5
  1243      */
  1244     public <A extends Annotation> A getAnnotation(Class<A> annotationClass) {
  1245         Object data = getAnnotationData(annotationClass);
  1246         return data == null ? null : AnnotationImpl.create(annotationClass, data);
  1247     }
  1248 
  1249     /**
  1250      * @throws NullPointerException {@inheritDoc}
  1251      * @since 1.5
  1252      */
  1253     @JavaScriptBody(args = { "ac" }, 
  1254         body = "if (this.anno && this.anno['L' + ac.jvmName + ';']) { return true; }"
  1255         + "else return false;"
  1256     )
  1257     public boolean isAnnotationPresent(
  1258         Class<? extends Annotation> annotationClass) {
  1259         if (annotationClass == null)
  1260             throw new NullPointerException();
  1261 
  1262         return getAnnotation(annotationClass) != null;
  1263     }
  1264 
  1265     @JavaScriptBody(args = {}, body = "return this.anno;")
  1266     private Object getAnnotationData() {
  1267         throw new UnsupportedOperationException();
  1268     }
  1269 
  1270     /**
  1271      * @since 1.5
  1272      */
  1273     public Annotation[] getAnnotations() {
  1274         Object data = getAnnotationData();
  1275         return data == null ? new Annotation[0] : AnnotationImpl.create(data);
  1276     }
  1277 
  1278     /**
  1279      * @since 1.5
  1280      */
  1281     public Annotation[] getDeclaredAnnotations()  {
  1282         throw new UnsupportedOperationException();
  1283     }
  1284 
  1285     @JavaScriptBody(args = "type", body = ""
  1286         + "var c = vm.java_lang_Class(true);"
  1287         + "c.jvmName = type;"
  1288         + "c.primitive = true;"
  1289         + "return c;"
  1290     )
  1291     native static Class getPrimitiveClass(String type);
  1292 
  1293     @JavaScriptBody(args = {}, body = 
  1294         "return vm.desiredAssertionStatus ? vm.desiredAssertionStatus : false;"
  1295     )
  1296     public native boolean desiredAssertionStatus();
  1297 }