emul/src/main/java/java/lang/Class.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 04 Dec 2012 14:31:11 +0100
branchreflection
changeset 260 1d03cb35fbda
parent 251 0b33848114b1
child 261 5d1e20215d12
permissions -rw-r--r--
Removing default implementation from reflection APIs
jaroslav@56
     1
/*
jaroslav@56
     2
 * Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
jaroslav@56
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jaroslav@56
     4
 *
jaroslav@56
     5
 * This code is free software; you can redistribute it and/or modify it
jaroslav@56
     6
 * under the terms of the GNU General Public License version 2 only, as
jaroslav@56
     7
 * published by the Free Software Foundation.  Oracle designates this
jaroslav@56
     8
 * particular file as subject to the "Classpath" exception as provided
jaroslav@56
     9
 * by Oracle in the LICENSE file that accompanied this code.
jaroslav@56
    10
 *
jaroslav@56
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jaroslav@56
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jaroslav@56
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jaroslav@56
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jaroslav@56
    15
 * accompanied this code).
jaroslav@56
    16
 *
jaroslav@56
    17
 * You should have received a copy of the GNU General Public License version
jaroslav@56
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jaroslav@56
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jaroslav@56
    20
 *
jaroslav@56
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jaroslav@56
    22
 * or visit www.oracle.com if you need additional information or have any
jaroslav@56
    23
 * questions.
jaroslav@56
    24
 */
jaroslav@56
    25
jaroslav@56
    26
package java.lang;
jaroslav@56
    27
jaroslav@122
    28
import java.io.InputStream;
jaroslav@56
    29
import java.lang.annotation.Annotation;
jaroslav@260
    30
import java.lang.reflect.TypeVariable;
jaroslav@225
    31
import org.apidesign.bck2brwsr.core.JavaScriptBody;
jaroslav@56
    32
jaroslav@56
    33
/**
jaroslav@56
    34
 * Instances of the class {@code Class} represent classes and
jaroslav@56
    35
 * interfaces in a running Java application.  An enum is a kind of
jaroslav@56
    36
 * class and an annotation is a kind of interface.  Every array also
jaroslav@56
    37
 * belongs to a class that is reflected as a {@code Class} object
jaroslav@56
    38
 * that is shared by all arrays with the same element type and number
jaroslav@56
    39
 * of dimensions.  The primitive Java types ({@code boolean},
jaroslav@56
    40
 * {@code byte}, {@code char}, {@code short},
jaroslav@56
    41
 * {@code int}, {@code long}, {@code float}, and
jaroslav@56
    42
 * {@code double}), and the keyword {@code void} are also
jaroslav@56
    43
 * represented as {@code Class} objects.
jaroslav@56
    44
 *
jaroslav@56
    45
 * <p> {@code Class} has no public constructor. Instead {@code Class}
jaroslav@56
    46
 * objects are constructed automatically by the Java Virtual Machine as classes
jaroslav@56
    47
 * are loaded and by calls to the {@code defineClass} method in the class
jaroslav@56
    48
 * loader.
jaroslav@56
    49
 *
jaroslav@56
    50
 * <p> The following example uses a {@code Class} object to print the
jaroslav@56
    51
 * class name of an object:
jaroslav@56
    52
 *
jaroslav@56
    53
 * <p> <blockquote><pre>
jaroslav@56
    54
 *     void printClassName(Object obj) {
jaroslav@56
    55
 *         System.out.println("The class of " + obj +
jaroslav@56
    56
 *                            " is " + obj.getClass().getName());
jaroslav@56
    57
 *     }
jaroslav@56
    58
 * </pre></blockquote>
jaroslav@56
    59
 *
jaroslav@56
    60
 * <p> It is also possible to get the {@code Class} object for a named
jaroslav@56
    61
 * type (or for void) using a class literal.  See Section 15.8.2 of
jaroslav@56
    62
 * <cite>The Java&trade; Language Specification</cite>.
jaroslav@56
    63
 * For example:
jaroslav@56
    64
 *
jaroslav@56
    65
 * <p> <blockquote>
jaroslav@56
    66
 *     {@code System.out.println("The name of class Foo is: "+Foo.class.getName());}
jaroslav@56
    67
 * </blockquote>
jaroslav@56
    68
 *
jaroslav@56
    69
 * @param <T> the type of the class modeled by this {@code Class}
jaroslav@56
    70
 * object.  For example, the type of {@code String.class} is {@code
jaroslav@56
    71
 * Class<String>}.  Use {@code Class<?>} if the class being modeled is
jaroslav@56
    72
 * unknown.
jaroslav@56
    73
 *
jaroslav@56
    74
 * @author  unascribed
jaroslav@56
    75
 * @see     java.lang.ClassLoader#defineClass(byte[], int, int)
jaroslav@56
    76
 * @since   JDK1.0
jaroslav@56
    77
 */
jaroslav@56
    78
public final
jaroslav@260
    79
    class Class<T> implements java.io.Serializable,
jaroslav@260
    80
                              java.lang.reflect.GenericDeclaration,
jaroslav@260
    81
                              java.lang.reflect.Type,
jaroslav@260
    82
                              java.lang.reflect.AnnotatedElement {
jaroslav@56
    83
    private static final int ANNOTATION= 0x00002000;
jaroslav@56
    84
    private static final int ENUM      = 0x00004000;
jaroslav@56
    85
    private static final int SYNTHETIC = 0x00001000;
jaroslav@56
    86
jaroslav@56
    87
    /*
jaroslav@56
    88
     * Constructor. Only the Java Virtual Machine creates Class
jaroslav@56
    89
     * objects.
jaroslav@56
    90
     */
jaroslav@56
    91
    private Class() {}
jaroslav@56
    92
jaroslav@56
    93
jaroslav@56
    94
    /**
jaroslav@56
    95
     * Converts the object to a string. The string representation is the
jaroslav@56
    96
     * string "class" or "interface", followed by a space, and then by the
jaroslav@56
    97
     * fully qualified name of the class in the format returned by
jaroslav@56
    98
     * {@code getName}.  If this {@code Class} object represents a
jaroslav@56
    99
     * primitive type, this method returns the name of the primitive type.  If
jaroslav@56
   100
     * this {@code Class} object represents void this method returns
jaroslav@56
   101
     * "void".
jaroslav@56
   102
     *
jaroslav@56
   103
     * @return a string representation of this class object.
jaroslav@56
   104
     */
jaroslav@56
   105
    public String toString() {
jaroslav@56
   106
        return (isInterface() ? "interface " : (isPrimitive() ? "" : "class "))
jaroslav@56
   107
            + getName();
jaroslav@56
   108
    }
jaroslav@56
   109
jaroslav@56
   110
jaroslav@56
   111
    /**
jaroslav@56
   112
     * Returns the {@code Class} object associated with the class or
jaroslav@56
   113
     * interface with the given string name.  Invoking this method is
jaroslav@56
   114
     * equivalent to:
jaroslav@56
   115
     *
jaroslav@56
   116
     * <blockquote>
jaroslav@56
   117
     *  {@code Class.forName(className, true, currentLoader)}
jaroslav@56
   118
     * </blockquote>
jaroslav@56
   119
     *
jaroslav@56
   120
     * where {@code currentLoader} denotes the defining class loader of
jaroslav@56
   121
     * the current class.
jaroslav@56
   122
     *
jaroslav@56
   123
     * <p> For example, the following code fragment returns the
jaroslav@56
   124
     * runtime {@code Class} descriptor for the class named
jaroslav@56
   125
     * {@code java.lang.Thread}:
jaroslav@56
   126
     *
jaroslav@56
   127
     * <blockquote>
jaroslav@56
   128
     *   {@code Class t = Class.forName("java.lang.Thread")}
jaroslav@56
   129
     * </blockquote>
jaroslav@56
   130
     * <p>
jaroslav@56
   131
     * A call to {@code forName("X")} causes the class named
jaroslav@56
   132
     * {@code X} to be initialized.
jaroslav@56
   133
     *
jaroslav@56
   134
     * @param      className   the fully qualified name of the desired class.
jaroslav@56
   135
     * @return     the {@code Class} object for the class with the
jaroslav@56
   136
     *             specified name.
jaroslav@56
   137
     * @exception LinkageError if the linkage fails
jaroslav@56
   138
     * @exception ExceptionInInitializerError if the initialization provoked
jaroslav@56
   139
     *            by this method fails
jaroslav@56
   140
     * @exception ClassNotFoundException if the class cannot be located
jaroslav@56
   141
     */
jaroslav@56
   142
    public static Class<?> forName(String className)
jaroslav@56
   143
                throws ClassNotFoundException {
jaroslav@65
   144
        throw new UnsupportedOperationException();
jaroslav@56
   145
    }
jaroslav@56
   146
jaroslav@56
   147
jaroslav@56
   148
    /**
jaroslav@56
   149
     * Creates a new instance of the class represented by this {@code Class}
jaroslav@56
   150
     * object.  The class is instantiated as if by a {@code new}
jaroslav@56
   151
     * expression with an empty argument list.  The class is initialized if it
jaroslav@56
   152
     * has not already been initialized.
jaroslav@56
   153
     *
jaroslav@56
   154
     * <p>Note that this method propagates any exception thrown by the
jaroslav@56
   155
     * nullary constructor, including a checked exception.  Use of
jaroslav@56
   156
     * this method effectively bypasses the compile-time exception
jaroslav@56
   157
     * checking that would otherwise be performed by the compiler.
jaroslav@56
   158
     * The {@link
jaroslav@56
   159
     * java.lang.reflect.Constructor#newInstance(java.lang.Object...)
jaroslav@56
   160
     * Constructor.newInstance} method avoids this problem by wrapping
jaroslav@56
   161
     * any exception thrown by the constructor in a (checked) {@link
jaroslav@56
   162
     * java.lang.reflect.InvocationTargetException}.
jaroslav@56
   163
     *
jaroslav@56
   164
     * @return     a newly allocated instance of the class represented by this
jaroslav@56
   165
     *             object.
jaroslav@56
   166
     * @exception  IllegalAccessException  if the class or its nullary
jaroslav@56
   167
     *               constructor is not accessible.
jaroslav@56
   168
     * @exception  InstantiationException
jaroslav@56
   169
     *               if this {@code Class} represents an abstract class,
jaroslav@56
   170
     *               an interface, an array class, a primitive type, or void;
jaroslav@56
   171
     *               or if the class has no nullary constructor;
jaroslav@56
   172
     *               or if the instantiation fails for some other reason.
jaroslav@56
   173
     * @exception  ExceptionInInitializerError if the initialization
jaroslav@56
   174
     *               provoked by this method fails.
jaroslav@56
   175
     * @exception  SecurityException
jaroslav@56
   176
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@56
   177
     *             following conditions is met:
jaroslav@56
   178
     *
jaroslav@56
   179
     *             <ul>
jaroslav@56
   180
     *
jaroslav@56
   181
     *             <li> invocation of
jaroslav@56
   182
     *             {@link SecurityManager#checkMemberAccess
jaroslav@56
   183
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@56
   184
     *             creation of new instances of this class
jaroslav@56
   185
     *
jaroslav@56
   186
     *             <li> the caller's class loader is not the same as or an
jaroslav@56
   187
     *             ancestor of the class loader for the current class and
jaroslav@56
   188
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@56
   189
     *             s.checkPackageAccess()} denies access to the package
jaroslav@56
   190
     *             of this class
jaroslav@56
   191
     *
jaroslav@56
   192
     *             </ul>
jaroslav@56
   193
     *
jaroslav@56
   194
     */
jaroslav@231
   195
    @JavaScriptBody(args = "self", body =
jaroslav@231
   196
          "var inst = self.cnstr();"
jaroslav@251
   197
        + "inst.cons__V(inst);"
jaroslav@231
   198
        + "return inst;"
jaroslav@231
   199
    )
jaroslav@56
   200
    public T newInstance()
jaroslav@56
   201
        throws InstantiationException, IllegalAccessException
jaroslav@56
   202
    {
jaroslav@231
   203
        throw new UnsupportedOperationException();
jaroslav@56
   204
    }
jaroslav@56
   205
jaroslav@56
   206
    /**
jaroslav@56
   207
     * Determines if the specified {@code Object} is assignment-compatible
jaroslav@56
   208
     * with the object represented by this {@code Class}.  This method is
jaroslav@56
   209
     * the dynamic equivalent of the Java language {@code instanceof}
jaroslav@56
   210
     * operator. The method returns {@code true} if the specified
jaroslav@56
   211
     * {@code Object} argument is non-null and can be cast to the
jaroslav@56
   212
     * reference type represented by this {@code Class} object without
jaroslav@56
   213
     * raising a {@code ClassCastException.} It returns {@code false}
jaroslav@56
   214
     * otherwise.
jaroslav@56
   215
     *
jaroslav@56
   216
     * <p> Specifically, if this {@code Class} object represents a
jaroslav@56
   217
     * declared class, this method returns {@code true} if the specified
jaroslav@56
   218
     * {@code Object} argument is an instance of the represented class (or
jaroslav@56
   219
     * of any of its subclasses); it returns {@code false} otherwise. If
jaroslav@56
   220
     * this {@code Class} object represents an array class, this method
jaroslav@56
   221
     * returns {@code true} if the specified {@code Object} argument
jaroslav@56
   222
     * can be converted to an object of the array class by an identity
jaroslav@56
   223
     * conversion or by a widening reference conversion; it returns
jaroslav@56
   224
     * {@code false} otherwise. If this {@code Class} object
jaroslav@56
   225
     * represents an interface, this method returns {@code true} if the
jaroslav@56
   226
     * class or any superclass of the specified {@code Object} argument
jaroslav@56
   227
     * implements this interface; it returns {@code false} otherwise. If
jaroslav@56
   228
     * this {@code Class} object represents a primitive type, this method
jaroslav@56
   229
     * returns {@code false}.
jaroslav@56
   230
     *
jaroslav@56
   231
     * @param   obj the object to check
jaroslav@56
   232
     * @return  true if {@code obj} is an instance of this class
jaroslav@56
   233
     *
jaroslav@56
   234
     * @since JDK1.1
jaroslav@56
   235
     */
jaroslav@56
   236
    public native boolean isInstance(Object obj);
jaroslav@56
   237
jaroslav@56
   238
jaroslav@56
   239
    /**
jaroslav@56
   240
     * Determines if the class or interface represented by this
jaroslav@56
   241
     * {@code Class} object is either the same as, or is a superclass or
jaroslav@56
   242
     * superinterface of, the class or interface represented by the specified
jaroslav@56
   243
     * {@code Class} parameter. It returns {@code true} if so;
jaroslav@56
   244
     * otherwise it returns {@code false}. If this {@code Class}
jaroslav@56
   245
     * object represents a primitive type, this method returns
jaroslav@56
   246
     * {@code true} if the specified {@code Class} parameter is
jaroslav@56
   247
     * exactly this {@code Class} object; otherwise it returns
jaroslav@56
   248
     * {@code false}.
jaroslav@56
   249
     *
jaroslav@56
   250
     * <p> Specifically, this method tests whether the type represented by the
jaroslav@56
   251
     * specified {@code Class} parameter can be converted to the type
jaroslav@56
   252
     * represented by this {@code Class} object via an identity conversion
jaroslav@56
   253
     * or via a widening reference conversion. See <em>The Java Language
jaroslav@56
   254
     * Specification</em>, sections 5.1.1 and 5.1.4 , for details.
jaroslav@56
   255
     *
jaroslav@56
   256
     * @param cls the {@code Class} object to be checked
jaroslav@56
   257
     * @return the {@code boolean} value indicating whether objects of the
jaroslav@56
   258
     * type {@code cls} can be assigned to objects of this class
jaroslav@56
   259
     * @exception NullPointerException if the specified Class parameter is
jaroslav@56
   260
     *            null.
jaroslav@56
   261
     * @since JDK1.1
jaroslav@56
   262
     */
jaroslav@56
   263
    public native boolean isAssignableFrom(Class<?> cls);
jaroslav@56
   264
jaroslav@56
   265
jaroslav@56
   266
    /**
jaroslav@56
   267
     * Determines if the specified {@code Class} object represents an
jaroslav@56
   268
     * interface type.
jaroslav@56
   269
     *
jaroslav@56
   270
     * @return  {@code true} if this object represents an interface;
jaroslav@56
   271
     *          {@code false} otherwise.
jaroslav@56
   272
     */
jaroslav@56
   273
    public native boolean isInterface();
jaroslav@56
   274
jaroslav@56
   275
jaroslav@56
   276
    /**
jaroslav@56
   277
     * Determines if this {@code Class} object represents an array class.
jaroslav@56
   278
     *
jaroslav@56
   279
     * @return  {@code true} if this object represents an array class;
jaroslav@56
   280
     *          {@code false} otherwise.
jaroslav@56
   281
     * @since   JDK1.1
jaroslav@56
   282
     */
jaroslav@228
   283
    public boolean isArray() {
jaroslav@228
   284
        return false;
jaroslav@228
   285
    }
jaroslav@56
   286
jaroslav@56
   287
jaroslav@56
   288
    /**
jaroslav@56
   289
     * Determines if the specified {@code Class} object represents a
jaroslav@56
   290
     * primitive type.
jaroslav@56
   291
     *
jaroslav@56
   292
     * <p> There are nine predefined {@code Class} objects to represent
jaroslav@56
   293
     * the eight primitive types and void.  These are created by the Java
jaroslav@56
   294
     * Virtual Machine, and have the same names as the primitive types that
jaroslav@56
   295
     * they represent, namely {@code boolean}, {@code byte},
jaroslav@56
   296
     * {@code char}, {@code short}, {@code int},
jaroslav@56
   297
     * {@code long}, {@code float}, and {@code double}.
jaroslav@56
   298
     *
jaroslav@56
   299
     * <p> These objects may only be accessed via the following public static
jaroslav@56
   300
     * final variables, and are the only {@code Class} objects for which
jaroslav@56
   301
     * this method returns {@code true}.
jaroslav@56
   302
     *
jaroslav@56
   303
     * @return true if and only if this class represents a primitive type
jaroslav@56
   304
     *
jaroslav@56
   305
     * @see     java.lang.Boolean#TYPE
jaroslav@56
   306
     * @see     java.lang.Character#TYPE
jaroslav@56
   307
     * @see     java.lang.Byte#TYPE
jaroslav@56
   308
     * @see     java.lang.Short#TYPE
jaroslav@56
   309
     * @see     java.lang.Integer#TYPE
jaroslav@56
   310
     * @see     java.lang.Long#TYPE
jaroslav@56
   311
     * @see     java.lang.Float#TYPE
jaroslav@56
   312
     * @see     java.lang.Double#TYPE
jaroslav@56
   313
     * @see     java.lang.Void#TYPE
jaroslav@56
   314
     * @since JDK1.1
jaroslav@56
   315
     */
jaroslav@56
   316
    public native boolean isPrimitive();
jaroslav@56
   317
jaroslav@56
   318
    /**
jaroslav@56
   319
     * Returns true if this {@code Class} object represents an annotation
jaroslav@56
   320
     * type.  Note that if this method returns true, {@link #isInterface()}
jaroslav@56
   321
     * would also return true, as all annotation types are also interfaces.
jaroslav@56
   322
     *
jaroslav@56
   323
     * @return {@code true} if this class object represents an annotation
jaroslav@56
   324
     *      type; {@code false} otherwise
jaroslav@56
   325
     * @since 1.5
jaroslav@56
   326
     */
jaroslav@56
   327
    public boolean isAnnotation() {
jaroslav@56
   328
        return (getModifiers() & ANNOTATION) != 0;
jaroslav@56
   329
    }
jaroslav@56
   330
jaroslav@56
   331
    /**
jaroslav@56
   332
     * Returns {@code true} if this class is a synthetic class;
jaroslav@56
   333
     * returns {@code false} otherwise.
jaroslav@56
   334
     * @return {@code true} if and only if this class is a synthetic class as
jaroslav@56
   335
     *         defined by the Java Language Specification.
jaroslav@56
   336
     * @since 1.5
jaroslav@56
   337
     */
jaroslav@56
   338
    public boolean isSynthetic() {
jaroslav@56
   339
        return (getModifiers() & SYNTHETIC) != 0;
jaroslav@56
   340
    }
jaroslav@56
   341
jaroslav@56
   342
    /**
jaroslav@56
   343
     * Returns the  name of the entity (class, interface, array class,
jaroslav@56
   344
     * primitive type, or void) represented by this {@code Class} object,
jaroslav@56
   345
     * as a {@code String}.
jaroslav@56
   346
     *
jaroslav@56
   347
     * <p> If this class object represents a reference type that is not an
jaroslav@56
   348
     * array type then the binary name of the class is returned, as specified
jaroslav@56
   349
     * by
jaroslav@56
   350
     * <cite>The Java&trade; Language Specification</cite>.
jaroslav@56
   351
     *
jaroslav@56
   352
     * <p> If this class object represents a primitive type or void, then the
jaroslav@56
   353
     * name returned is a {@code String} equal to the Java language
jaroslav@56
   354
     * keyword corresponding to the primitive type or void.
jaroslav@56
   355
     *
jaroslav@56
   356
     * <p> If this class object represents a class of arrays, then the internal
jaroslav@56
   357
     * form of the name consists of the name of the element type preceded by
jaroslav@56
   358
     * one or more '{@code [}' characters representing the depth of the array
jaroslav@56
   359
     * nesting.  The encoding of element type names is as follows:
jaroslav@56
   360
     *
jaroslav@56
   361
     * <blockquote><table summary="Element types and encodings">
jaroslav@56
   362
     * <tr><th> Element Type <th> &nbsp;&nbsp;&nbsp; <th> Encoding
jaroslav@56
   363
     * <tr><td> boolean      <td> &nbsp;&nbsp;&nbsp; <td align=center> Z
jaroslav@56
   364
     * <tr><td> byte         <td> &nbsp;&nbsp;&nbsp; <td align=center> B
jaroslav@56
   365
     * <tr><td> char         <td> &nbsp;&nbsp;&nbsp; <td align=center> C
jaroslav@56
   366
     * <tr><td> class or interface
jaroslav@56
   367
     *                       <td> &nbsp;&nbsp;&nbsp; <td align=center> L<i>classname</i>;
jaroslav@56
   368
     * <tr><td> double       <td> &nbsp;&nbsp;&nbsp; <td align=center> D
jaroslav@56
   369
     * <tr><td> float        <td> &nbsp;&nbsp;&nbsp; <td align=center> F
jaroslav@56
   370
     * <tr><td> int          <td> &nbsp;&nbsp;&nbsp; <td align=center> I
jaroslav@56
   371
     * <tr><td> long         <td> &nbsp;&nbsp;&nbsp; <td align=center> J
jaroslav@56
   372
     * <tr><td> short        <td> &nbsp;&nbsp;&nbsp; <td align=center> S
jaroslav@56
   373
     * </table></blockquote>
jaroslav@56
   374
     *
jaroslav@56
   375
     * <p> The class or interface name <i>classname</i> is the binary name of
jaroslav@56
   376
     * the class specified above.
jaroslav@56
   377
     *
jaroslav@56
   378
     * <p> Examples:
jaroslav@56
   379
     * <blockquote><pre>
jaroslav@56
   380
     * String.class.getName()
jaroslav@56
   381
     *     returns "java.lang.String"
jaroslav@56
   382
     * byte.class.getName()
jaroslav@56
   383
     *     returns "byte"
jaroslav@56
   384
     * (new Object[3]).getClass().getName()
jaroslav@56
   385
     *     returns "[Ljava.lang.Object;"
jaroslav@56
   386
     * (new int[3][4][5][6][7][8][9]).getClass().getName()
jaroslav@56
   387
     *     returns "[[[[[[[I"
jaroslav@56
   388
     * </pre></blockquote>
jaroslav@56
   389
     *
jaroslav@56
   390
     * @return  the name of the class or interface
jaroslav@56
   391
     *          represented by this object.
jaroslav@56
   392
     */
jaroslav@56
   393
    public String getName() {
jaroslav@225
   394
        return jvmName().replace('/', '.');
jaroslav@56
   395
    }
jaroslav@56
   396
jaroslav@225
   397
    @JavaScriptBody(args = "self", body = "return self.jvmName;")
jaroslav@225
   398
    private native String jvmName();
jaroslav@225
   399
jaroslav@260
   400
    
jaroslav@260
   401
    /**
jaroslav@260
   402
     * Returns an array of {@code TypeVariable} objects that represent the
jaroslav@260
   403
     * type variables declared by the generic declaration represented by this
jaroslav@260
   404
     * {@code GenericDeclaration} object, in declaration order.  Returns an
jaroslav@260
   405
     * array of length 0 if the underlying generic declaration declares no type
jaroslav@260
   406
     * variables.
jaroslav@260
   407
     *
jaroslav@260
   408
     * @return an array of {@code TypeVariable} objects that represent
jaroslav@260
   409
     *     the type variables declared by this generic declaration
jaroslav@260
   410
     * @throws java.lang.reflect.GenericSignatureFormatError if the generic
jaroslav@260
   411
     *     signature of this generic declaration does not conform to
jaroslav@260
   412
     *     the format specified in
jaroslav@260
   413
     *     <cite>The Java&trade; Virtual Machine Specification</cite>
jaroslav@260
   414
     * @since 1.5
jaroslav@260
   415
     */
jaroslav@260
   416
    public TypeVariable<Class<T>>[] getTypeParameters() {
jaroslav@260
   417
        throw new UnsupportedOperationException();
jaroslav@260
   418
    }
jaroslav@260
   419
 
jaroslav@56
   420
    /**
jaroslav@56
   421
     * Returns the {@code Class} representing the superclass of the entity
jaroslav@56
   422
     * (class, interface, primitive type or void) represented by this
jaroslav@56
   423
     * {@code Class}.  If this {@code Class} represents either the
jaroslav@56
   424
     * {@code Object} class, an interface, a primitive type, or void, then
jaroslav@56
   425
     * null is returned.  If this object represents an array class then the
jaroslav@56
   426
     * {@code Class} object representing the {@code Object} class is
jaroslav@56
   427
     * returned.
jaroslav@56
   428
     *
jaroslav@56
   429
     * @return the superclass of the class represented by this object.
jaroslav@56
   430
     */
jaroslav@230
   431
    @JavaScriptBody(args = "self", body = "return self.superclass;")
jaroslav@56
   432
    public native Class<? super T> getSuperclass();
jaroslav@56
   433
jaroslav@56
   434
    /**
jaroslav@56
   435
     * Returns the Java language modifiers for this class or interface, encoded
jaroslav@56
   436
     * in an integer. The modifiers consist of the Java Virtual Machine's
jaroslav@56
   437
     * constants for {@code public}, {@code protected},
jaroslav@56
   438
     * {@code private}, {@code final}, {@code static},
jaroslav@56
   439
     * {@code abstract} and {@code interface}; they should be decoded
jaroslav@56
   440
     * using the methods of class {@code Modifier}.
jaroslav@56
   441
     *
jaroslav@56
   442
     * <p> If the underlying class is an array class, then its
jaroslav@56
   443
     * {@code public}, {@code private} and {@code protected}
jaroslav@56
   444
     * modifiers are the same as those of its component type.  If this
jaroslav@56
   445
     * {@code Class} represents a primitive type or void, its
jaroslav@56
   446
     * {@code public} modifier is always {@code true}, and its
jaroslav@56
   447
     * {@code protected} and {@code private} modifiers are always
jaroslav@56
   448
     * {@code false}. If this object represents an array class, a
jaroslav@56
   449
     * primitive type or void, then its {@code final} modifier is always
jaroslav@56
   450
     * {@code true} and its interface modifier is always
jaroslav@56
   451
     * {@code false}. The values of its other modifiers are not determined
jaroslav@56
   452
     * by this specification.
jaroslav@56
   453
     *
jaroslav@56
   454
     * <p> The modifier encodings are defined in <em>The Java Virtual Machine
jaroslav@56
   455
     * Specification</em>, table 4.1.
jaroslav@56
   456
     *
jaroslav@56
   457
     * @return the {@code int} representing the modifiers for this class
jaroslav@56
   458
     * @see     java.lang.reflect.Modifier
jaroslav@56
   459
     * @since JDK1.1
jaroslav@56
   460
     */
jaroslav@56
   461
    public native int getModifiers();
jaroslav@56
   462
jaroslav@56
   463
jaroslav@56
   464
    /**
jaroslav@56
   465
     * Returns the simple name of the underlying class as given in the
jaroslav@56
   466
     * source code. Returns an empty string if the underlying class is
jaroslav@56
   467
     * anonymous.
jaroslav@56
   468
     *
jaroslav@56
   469
     * <p>The simple name of an array is the simple name of the
jaroslav@56
   470
     * component type with "[]" appended.  In particular the simple
jaroslav@56
   471
     * name of an array whose component type is anonymous is "[]".
jaroslav@56
   472
     *
jaroslav@56
   473
     * @return the simple name of the underlying class
jaroslav@56
   474
     * @since 1.5
jaroslav@56
   475
     */
jaroslav@56
   476
    public String getSimpleName() {
jaroslav@229
   477
        if (isArray())
jaroslav@229
   478
            return getComponentType().getSimpleName()+"[]";
jaroslav@229
   479
jaroslav@229
   480
        String simpleName = getSimpleBinaryName();
jaroslav@229
   481
        if (simpleName == null) { // top level class
jaroslav@229
   482
            simpleName = getName();
jaroslav@229
   483
            return simpleName.substring(simpleName.lastIndexOf(".")+1); // strip the package name
jaroslav@229
   484
        }
jaroslav@229
   485
        // According to JLS3 "Binary Compatibility" (13.1) the binary
jaroslav@229
   486
        // name of non-package classes (not top level) is the binary
jaroslav@229
   487
        // name of the immediately enclosing class followed by a '$' followed by:
jaroslav@229
   488
        // (for nested and inner classes): the simple name.
jaroslav@229
   489
        // (for local classes): 1 or more digits followed by the simple name.
jaroslav@229
   490
        // (for anonymous classes): 1 or more digits.
jaroslav@229
   491
jaroslav@229
   492
        // Since getSimpleBinaryName() will strip the binary name of
jaroslav@229
   493
        // the immediatly enclosing class, we are now looking at a
jaroslav@229
   494
        // string that matches the regular expression "\$[0-9]*"
jaroslav@229
   495
        // followed by a simple name (considering the simple of an
jaroslav@229
   496
        // anonymous class to be the empty string).
jaroslav@229
   497
jaroslav@229
   498
        // Remove leading "\$[0-9]*" from the name
jaroslav@229
   499
        int length = simpleName.length();
jaroslav@229
   500
        if (length < 1 || simpleName.charAt(0) != '$')
jaroslav@229
   501
            throw new IllegalStateException("Malformed class name");
jaroslav@229
   502
        int index = 1;
jaroslav@229
   503
        while (index < length && isAsciiDigit(simpleName.charAt(index)))
jaroslav@229
   504
            index++;
jaroslav@229
   505
        // Eventually, this is the empty string iff this is an anonymous class
jaroslav@229
   506
        return simpleName.substring(index);
jaroslav@56
   507
    }
jaroslav@56
   508
jaroslav@56
   509
    /**
jaroslav@229
   510
     * Returns the "simple binary name" of the underlying class, i.e.,
jaroslav@229
   511
     * the binary name without the leading enclosing class name.
jaroslav@229
   512
     * Returns {@code null} if the underlying class is a top level
jaroslav@229
   513
     * class.
jaroslav@229
   514
     */
jaroslav@229
   515
    private String getSimpleBinaryName() {
jaroslav@229
   516
        Class<?> enclosingClass = null; // XXX getEnclosingClass();
jaroslav@229
   517
        if (enclosingClass == null) // top level class
jaroslav@229
   518
            return null;
jaroslav@229
   519
        // Otherwise, strip the enclosing class' name
jaroslav@229
   520
        try {
jaroslav@229
   521
            return getName().substring(enclosingClass.getName().length());
jaroslav@229
   522
        } catch (IndexOutOfBoundsException ex) {
jaroslav@229
   523
            throw new IllegalStateException("Malformed class name");
jaroslav@229
   524
        }
jaroslav@229
   525
    }
jaroslav@229
   526
    
jaroslav@229
   527
    /**
jaroslav@56
   528
     * Character.isDigit answers {@code true} to some non-ascii
jaroslav@56
   529
     * digits.  This one does not.
jaroslav@56
   530
     */
jaroslav@56
   531
    private static boolean isAsciiDigit(char c) {
jaroslav@56
   532
        return '0' <= c && c <= '9';
jaroslav@56
   533
    }
jaroslav@56
   534
jaroslav@56
   535
    /**
jaroslav@56
   536
     * Returns the canonical name of the underlying class as
jaroslav@56
   537
     * defined by the Java Language Specification.  Returns null if
jaroslav@56
   538
     * the underlying class does not have a canonical name (i.e., if
jaroslav@56
   539
     * it is a local or anonymous class or an array whose component
jaroslav@56
   540
     * type does not have a canonical name).
jaroslav@56
   541
     * @return the canonical name of the underlying class if it exists, and
jaroslav@56
   542
     * {@code null} otherwise.
jaroslav@56
   543
     * @since 1.5
jaroslav@56
   544
     */
jaroslav@56
   545
    public String getCanonicalName() {
jaroslav@228
   546
        if (isArray()) {
jaroslav@228
   547
            String canonicalName = getComponentType().getCanonicalName();
jaroslav@228
   548
            if (canonicalName != null)
jaroslav@228
   549
                return canonicalName + "[]";
jaroslav@228
   550
            else
jaroslav@228
   551
                return null;
jaroslav@228
   552
        }
jaroslav@65
   553
//        if (isLocalOrAnonymousClass())
jaroslav@65
   554
//            return null;
jaroslav@65
   555
//        Class<?> enclosingClass = getEnclosingClass();
jaroslav@228
   556
        Class<?> enclosingClass = null;
jaroslav@228
   557
        if (enclosingClass == null) { // top level class
jaroslav@228
   558
            return getName();
jaroslav@228
   559
        } else {
jaroslav@228
   560
            String enclosingName = enclosingClass.getCanonicalName();
jaroslav@228
   561
            if (enclosingName == null)
jaroslav@228
   562
                return null;
jaroslav@228
   563
            return enclosingName + "." + getSimpleName();
jaroslav@228
   564
        }
jaroslav@56
   565
    }
jaroslav@56
   566
jaroslav@56
   567
    /**
jaroslav@56
   568
     * Finds a resource with a given name.  The rules for searching resources
jaroslav@56
   569
     * associated with a given class are implemented by the defining
jaroslav@56
   570
     * {@linkplain ClassLoader class loader} of the class.  This method
jaroslav@56
   571
     * delegates to this object's class loader.  If this object was loaded by
jaroslav@56
   572
     * the bootstrap class loader, the method delegates to {@link
jaroslav@56
   573
     * ClassLoader#getSystemResourceAsStream}.
jaroslav@56
   574
     *
jaroslav@56
   575
     * <p> Before delegation, an absolute resource name is constructed from the
jaroslav@56
   576
     * given resource name using this algorithm:
jaroslav@56
   577
     *
jaroslav@56
   578
     * <ul>
jaroslav@56
   579
     *
jaroslav@56
   580
     * <li> If the {@code name} begins with a {@code '/'}
jaroslav@56
   581
     * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
jaroslav@56
   582
     * portion of the {@code name} following the {@code '/'}.
jaroslav@56
   583
     *
jaroslav@56
   584
     * <li> Otherwise, the absolute name is of the following form:
jaroslav@56
   585
     *
jaroslav@56
   586
     * <blockquote>
jaroslav@56
   587
     *   {@code modified_package_name/name}
jaroslav@56
   588
     * </blockquote>
jaroslav@56
   589
     *
jaroslav@56
   590
     * <p> Where the {@code modified_package_name} is the package name of this
jaroslav@56
   591
     * object with {@code '/'} substituted for {@code '.'}
jaroslav@56
   592
     * (<tt>'&#92;u002e'</tt>).
jaroslav@56
   593
     *
jaroslav@56
   594
     * </ul>
jaroslav@56
   595
     *
jaroslav@56
   596
     * @param  name name of the desired resource
jaroslav@56
   597
     * @return      A {@link java.io.InputStream} object or {@code null} if
jaroslav@56
   598
     *              no resource with this name is found
jaroslav@56
   599
     * @throws  NullPointerException If {@code name} is {@code null}
jaroslav@56
   600
     * @since  JDK1.1
jaroslav@56
   601
     */
jaroslav@122
   602
     public InputStream getResourceAsStream(String name) {
jaroslav@122
   603
        name = resolveName(name);
jaroslav@122
   604
        ClassLoader cl = getClassLoader0();
jaroslav@122
   605
        if (cl==null) {
jaroslav@122
   606
            // A system class.
jaroslav@122
   607
            return ClassLoader.getSystemResourceAsStream(name);
jaroslav@122
   608
        }
jaroslav@122
   609
        return cl.getResourceAsStream(name);
jaroslav@122
   610
    }
jaroslav@56
   611
jaroslav@56
   612
    /**
jaroslav@56
   613
     * Finds a resource with a given name.  The rules for searching resources
jaroslav@56
   614
     * associated with a given class are implemented by the defining
jaroslav@56
   615
     * {@linkplain ClassLoader class loader} of the class.  This method
jaroslav@56
   616
     * delegates to this object's class loader.  If this object was loaded by
jaroslav@56
   617
     * the bootstrap class loader, the method delegates to {@link
jaroslav@56
   618
     * ClassLoader#getSystemResource}.
jaroslav@56
   619
     *
jaroslav@56
   620
     * <p> Before delegation, an absolute resource name is constructed from the
jaroslav@56
   621
     * given resource name using this algorithm:
jaroslav@56
   622
     *
jaroslav@56
   623
     * <ul>
jaroslav@56
   624
     *
jaroslav@56
   625
     * <li> If the {@code name} begins with a {@code '/'}
jaroslav@56
   626
     * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
jaroslav@56
   627
     * portion of the {@code name} following the {@code '/'}.
jaroslav@56
   628
     *
jaroslav@56
   629
     * <li> Otherwise, the absolute name is of the following form:
jaroslav@56
   630
     *
jaroslav@56
   631
     * <blockquote>
jaroslav@56
   632
     *   {@code modified_package_name/name}
jaroslav@56
   633
     * </blockquote>
jaroslav@56
   634
     *
jaroslav@56
   635
     * <p> Where the {@code modified_package_name} is the package name of this
jaroslav@56
   636
     * object with {@code '/'} substituted for {@code '.'}
jaroslav@56
   637
     * (<tt>'&#92;u002e'</tt>).
jaroslav@56
   638
     *
jaroslav@56
   639
     * </ul>
jaroslav@56
   640
     *
jaroslav@56
   641
     * @param  name name of the desired resource
jaroslav@56
   642
     * @return      A  {@link java.net.URL} object or {@code null} if no
jaroslav@56
   643
     *              resource with this name is found
jaroslav@56
   644
     * @since  JDK1.1
jaroslav@56
   645
     */
jaroslav@122
   646
    public java.net.URL getResource(String name) {
jaroslav@122
   647
        name = resolveName(name);
jaroslav@122
   648
        ClassLoader cl = getClassLoader0();
jaroslav@122
   649
        if (cl==null) {
jaroslav@122
   650
            // A system class.
jaroslav@122
   651
            return ClassLoader.getSystemResource(name);
jaroslav@122
   652
        }
jaroslav@122
   653
        return cl.getResource(name);
jaroslav@122
   654
    }
jaroslav@56
   655
jaroslav@56
   656
jaroslav@122
   657
   /**
jaroslav@122
   658
     * Add a package name prefix if the name is not absolute Remove leading "/"
jaroslav@122
   659
     * if name is absolute
jaroslav@122
   660
     */
jaroslav@122
   661
    private String resolveName(String name) {
jaroslav@122
   662
        if (name == null) {
jaroslav@122
   663
            return name;
jaroslav@122
   664
        }
jaroslav@122
   665
        if (!name.startsWith("/")) {
jaroslav@122
   666
            Class<?> c = this;
jaroslav@122
   667
            while (c.isArray()) {
jaroslav@122
   668
                c = c.getComponentType();
jaroslav@122
   669
            }
jaroslav@122
   670
            String baseName = c.getName();
jaroslav@122
   671
            int index = baseName.lastIndexOf('.');
jaroslav@122
   672
            if (index != -1) {
jaroslav@122
   673
                name = baseName.substring(0, index).replace('.', '/')
jaroslav@122
   674
                    +"/"+name;
jaroslav@122
   675
            }
jaroslav@122
   676
        } else {
jaroslav@122
   677
            name = name.substring(1);
jaroslav@122
   678
        }
jaroslav@122
   679
        return name;
jaroslav@122
   680
    }
jaroslav@122
   681
    
jaroslav@122
   682
    /**
jaroslav@122
   683
     * Returns the class loader for the class.  Some implementations may use
jaroslav@122
   684
     * null to represent the bootstrap class loader. This method will return
jaroslav@122
   685
     * null in such implementations if this class was loaded by the bootstrap
jaroslav@122
   686
     * class loader.
jaroslav@122
   687
     *
jaroslav@122
   688
     * <p> If a security manager is present, and the caller's class loader is
jaroslav@122
   689
     * not null and the caller's class loader is not the same as or an ancestor of
jaroslav@122
   690
     * the class loader for the class whose class loader is requested, then
jaroslav@122
   691
     * this method calls the security manager's {@code checkPermission}
jaroslav@122
   692
     * method with a {@code RuntimePermission("getClassLoader")}
jaroslav@122
   693
     * permission to ensure it's ok to access the class loader for the class.
jaroslav@122
   694
     *
jaroslav@122
   695
     * <p>If this object
jaroslav@122
   696
     * represents a primitive type or void, null is returned.
jaroslav@122
   697
     *
jaroslav@122
   698
     * @return  the class loader that loaded the class or interface
jaroslav@122
   699
     *          represented by this object.
jaroslav@122
   700
     * @throws SecurityException
jaroslav@122
   701
     *    if a security manager exists and its
jaroslav@122
   702
     *    {@code checkPermission} method denies
jaroslav@122
   703
     *    access to the class loader for the class.
jaroslav@122
   704
     * @see java.lang.ClassLoader
jaroslav@122
   705
     * @see SecurityManager#checkPermission
jaroslav@122
   706
     * @see java.lang.RuntimePermission
jaroslav@122
   707
     */
jaroslav@122
   708
    public ClassLoader getClassLoader() {
jaroslav@122
   709
        throw new SecurityException();
jaroslav@122
   710
    }
jaroslav@122
   711
    
jaroslav@122
   712
    // Package-private to allow ClassLoader access
jaroslav@122
   713
    native ClassLoader getClassLoader0();    
jaroslav@56
   714
jaroslav@122
   715
    /**
jaroslav@122
   716
     * Returns the {@code Class} representing the component type of an
jaroslav@122
   717
     * array.  If this class does not represent an array class this method
jaroslav@122
   718
     * returns null.
jaroslav@122
   719
     *
jaroslav@122
   720
     * @return the {@code Class} representing the component type of this
jaroslav@122
   721
     * class if this class is an array
jaroslav@122
   722
     * @see     java.lang.reflect.Array
jaroslav@122
   723
     * @since JDK1.1
jaroslav@122
   724
     */
jaroslav@228
   725
    public Class<?> getComponentType() {
jaroslav@228
   726
        return null;
jaroslav@228
   727
    }
jaroslav@56
   728
jaroslav@56
   729
    /**
jaroslav@56
   730
     * Returns true if and only if this class was declared as an enum in the
jaroslav@56
   731
     * source code.
jaroslav@56
   732
     *
jaroslav@56
   733
     * @return true if and only if this class was declared as an enum in the
jaroslav@56
   734
     *     source code
jaroslav@56
   735
     * @since 1.5
jaroslav@56
   736
     */
jaroslav@56
   737
    public boolean isEnum() {
jaroslav@56
   738
        // An enum must both directly extend java.lang.Enum and have
jaroslav@56
   739
        // the ENUM bit set; classes for specialized enum constants
jaroslav@56
   740
        // don't do the former.
jaroslav@56
   741
        return (this.getModifiers() & ENUM) != 0 &&
jaroslav@56
   742
        this.getSuperclass() == java.lang.Enum.class;
jaroslav@56
   743
    }
jaroslav@56
   744
jaroslav@56
   745
    /**
jaroslav@56
   746
     * Casts an object to the class or interface represented
jaroslav@56
   747
     * by this {@code Class} object.
jaroslav@56
   748
     *
jaroslav@56
   749
     * @param obj the object to be cast
jaroslav@56
   750
     * @return the object after casting, or null if obj is null
jaroslav@56
   751
     *
jaroslav@56
   752
     * @throws ClassCastException if the object is not
jaroslav@56
   753
     * null and is not assignable to the type T.
jaroslav@56
   754
     *
jaroslav@56
   755
     * @since 1.5
jaroslav@56
   756
     */
jaroslav@56
   757
    public T cast(Object obj) {
jaroslav@56
   758
        if (obj != null && !isInstance(obj))
jaroslav@56
   759
            throw new ClassCastException(cannotCastMsg(obj));
jaroslav@56
   760
        return (T) obj;
jaroslav@56
   761
    }
jaroslav@56
   762
jaroslav@56
   763
    private String cannotCastMsg(Object obj) {
jaroslav@56
   764
        return "Cannot cast " + obj.getClass().getName() + " to " + getName();
jaroslav@56
   765
    }
jaroslav@56
   766
jaroslav@56
   767
    /**
jaroslav@56
   768
     * Casts this {@code Class} object to represent a subclass of the class
jaroslav@56
   769
     * represented by the specified class object.  Checks that that the cast
jaroslav@56
   770
     * is valid, and throws a {@code ClassCastException} if it is not.  If
jaroslav@56
   771
     * this method succeeds, it always returns a reference to this class object.
jaroslav@56
   772
     *
jaroslav@56
   773
     * <p>This method is useful when a client needs to "narrow" the type of
jaroslav@56
   774
     * a {@code Class} object to pass it to an API that restricts the
jaroslav@56
   775
     * {@code Class} objects that it is willing to accept.  A cast would
jaroslav@56
   776
     * generate a compile-time warning, as the correctness of the cast
jaroslav@56
   777
     * could not be checked at runtime (because generic types are implemented
jaroslav@56
   778
     * by erasure).
jaroslav@56
   779
     *
jaroslav@56
   780
     * @return this {@code Class} object, cast to represent a subclass of
jaroslav@56
   781
     *    the specified class object.
jaroslav@56
   782
     * @throws ClassCastException if this {@code Class} object does not
jaroslav@56
   783
     *    represent a subclass of the specified class (here "subclass" includes
jaroslav@56
   784
     *    the class itself).
jaroslav@56
   785
     * @since 1.5
jaroslav@56
   786
     */
jaroslav@56
   787
    public <U> Class<? extends U> asSubclass(Class<U> clazz) {
jaroslav@56
   788
        if (clazz.isAssignableFrom(this))
jaroslav@56
   789
            return (Class<? extends U>) this;
jaroslav@56
   790
        else
jaroslav@56
   791
            throw new ClassCastException(this.toString());
jaroslav@56
   792
    }
jaroslav@56
   793
jaroslav@235
   794
    @JavaScriptBody(args = { "self", "ac" }, 
jaroslav@235
   795
        body = 
jaroslav@235
   796
          "if (self.anno) {"
jaroslav@235
   797
        + "  return self.anno['L' + ac.jvmName + ';'];"
jaroslav@235
   798
        + "}"
jaroslav@235
   799
    )
jaroslav@235
   800
    private Object getAnnotationData(Class<?> annotationClass) {
jaroslav@235
   801
        throw new UnsupportedOperationException();
jaroslav@235
   802
    }
jaroslav@237
   803
    /**
jaroslav@237
   804
     * @throws NullPointerException {@inheritDoc}
jaroslav@237
   805
     * @since 1.5
jaroslav@237
   806
     */
jaroslav@56
   807
    public <A extends Annotation> A getAnnotation(Class<A> annotationClass) {
jaroslav@235
   808
        Object data = getAnnotationData(annotationClass);
jaroslav@235
   809
        return data == null ? null : AnnotationImpl.create(annotationClass, data);
jaroslav@56
   810
    }
jaroslav@56
   811
jaroslav@56
   812
    /**
jaroslav@56
   813
     * @throws NullPointerException {@inheritDoc}
jaroslav@56
   814
     * @since 1.5
jaroslav@56
   815
     */
jaroslav@235
   816
    @JavaScriptBody(args = { "self", "ac" }, 
jaroslav@235
   817
        body = "if (self.anno && self.anno['L' + ac.jvmName + ';']) { return true; }"
jaroslav@235
   818
        + "else return false;"
jaroslav@235
   819
    )
jaroslav@56
   820
    public boolean isAnnotationPresent(
jaroslav@56
   821
        Class<? extends Annotation> annotationClass) {
jaroslav@56
   822
        if (annotationClass == null)
jaroslav@56
   823
            throw new NullPointerException();
jaroslav@56
   824
jaroslav@56
   825
        return getAnnotation(annotationClass) != null;
jaroslav@56
   826
    }
jaroslav@56
   827
jaroslav@238
   828
    @JavaScriptBody(args = "self", body = "return self.anno;")
jaroslav@238
   829
    private Object getAnnotationData() {
jaroslav@238
   830
        throw new UnsupportedOperationException();
jaroslav@238
   831
    }
jaroslav@56
   832
jaroslav@56
   833
    /**
jaroslav@56
   834
     * @since 1.5
jaroslav@56
   835
     */
jaroslav@56
   836
    public Annotation[] getAnnotations() {
jaroslav@238
   837
        Object data = getAnnotationData();
jaroslav@238
   838
        return data == null ? new Annotation[0] : AnnotationImpl.create(data);
jaroslav@56
   839
    }
jaroslav@56
   840
jaroslav@56
   841
    /**
jaroslav@56
   842
     * @since 1.5
jaroslav@56
   843
     */
jaroslav@56
   844
    public Annotation[] getDeclaredAnnotations()  {
jaroslav@65
   845
        throw new UnsupportedOperationException();
jaroslav@56
   846
    }
jaroslav@56
   847
jaroslav@84
   848
    static Class getPrimitiveClass(String type) {
jaroslav@93
   849
        // XXX
jaroslav@93
   850
        return Object.class;
jaroslav@80
   851
    }
jaroslav@88
   852
jaroslav@88
   853
    public boolean desiredAssertionStatus() {
jaroslav@88
   854
        return false;
jaroslav@88
   855
    }
jaroslav@56
   856
}