rt/emul/mini/src/main/java/java/lang/Class.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 22 Jun 2014 17:46:43 +0200
branchdefprop
changeset 1634 783acbc99199
parent 1623 d9cdfd8ef694
child 1653 bd151459ee4f
child 1676 87f66a77adf9
permissions -rw-r--r--
Verifying behavior of isAssignableFrom with array class parameter
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@424
    28
import java.io.ByteArrayInputStream;
jaroslav@122
    29
import java.io.InputStream;
jaroslav@56
    30
import java.lang.annotation.Annotation;
jtulach@1483
    31
import java.lang.reflect.Array;
jaroslav@1321
    32
import java.lang.reflect.Constructor;
jaroslav@261
    33
import java.lang.reflect.Field;
jaroslav@261
    34
import java.lang.reflect.Method;
jaroslav@260
    35
import java.lang.reflect.TypeVariable;
jaroslav@576
    36
import java.net.URL;
jaroslav@1586
    37
import org.apidesign.bck2brwsr.core.Exported;
jaroslav@225
    38
import org.apidesign.bck2brwsr.core.JavaScriptBody;
jaroslav@1515
    39
import org.apidesign.bck2brwsr.core.JavaScriptOnly;
jtulach@1483
    40
import org.apidesign.bck2brwsr.emul.reflect.AnnotationImpl;
jaroslav@555
    41
import org.apidesign.bck2brwsr.emul.reflect.MethodImpl;
jaroslav@56
    42
jaroslav@56
    43
/**
jaroslav@56
    44
 * Instances of the class {@code Class} represent classes and
jaroslav@56
    45
 * interfaces in a running Java application.  An enum is a kind of
jaroslav@56
    46
 * class and an annotation is a kind of interface.  Every array also
jaroslav@56
    47
 * belongs to a class that is reflected as a {@code Class} object
jaroslav@56
    48
 * that is shared by all arrays with the same element type and number
jaroslav@56
    49
 * of dimensions.  The primitive Java types ({@code boolean},
jaroslav@56
    50
 * {@code byte}, {@code char}, {@code short},
jaroslav@56
    51
 * {@code int}, {@code long}, {@code float}, and
jaroslav@56
    52
 * {@code double}), and the keyword {@code void} are also
jaroslav@56
    53
 * represented as {@code Class} objects.
jaroslav@56
    54
 *
jaroslav@56
    55
 * <p> {@code Class} has no public constructor. Instead {@code Class}
jaroslav@56
    56
 * objects are constructed automatically by the Java Virtual Machine as classes
jaroslav@56
    57
 * are loaded and by calls to the {@code defineClass} method in the class
jaroslav@56
    58
 * loader.
jaroslav@56
    59
 *
jaroslav@56
    60
 * <p> The following example uses a {@code Class} object to print the
jaroslav@56
    61
 * class name of an object:
jaroslav@56
    62
 *
jaroslav@56
    63
 * <p> <blockquote><pre>
jaroslav@56
    64
 *     void printClassName(Object obj) {
jaroslav@56
    65
 *         System.out.println("The class of " + obj +
jaroslav@56
    66
 *                            " is " + obj.getClass().getName());
jaroslav@56
    67
 *     }
jaroslav@56
    68
 * </pre></blockquote>
jaroslav@56
    69
 *
jaroslav@56
    70
 * <p> It is also possible to get the {@code Class} object for a named
jaroslav@56
    71
 * type (or for void) using a class literal.  See Section 15.8.2 of
jaroslav@56
    72
 * <cite>The Java&trade; Language Specification</cite>.
jaroslav@56
    73
 * For example:
jaroslav@56
    74
 *
jaroslav@56
    75
 * <p> <blockquote>
jaroslav@56
    76
 *     {@code System.out.println("The name of class Foo is: "+Foo.class.getName());}
jaroslav@56
    77
 * </blockquote>
jaroslav@56
    78
 *
jaroslav@56
    79
 * @param <T> the type of the class modeled by this {@code Class}
jaroslav@56
    80
 * object.  For example, the type of {@code String.class} is {@code
jaroslav@56
    81
 * Class<String>}.  Use {@code Class<?>} if the class being modeled is
jaroslav@56
    82
 * unknown.
jaroslav@56
    83
 *
jaroslav@56
    84
 * @author  unascribed
jaroslav@56
    85
 * @see     java.lang.ClassLoader#defineClass(byte[], int, int)
jaroslav@56
    86
 * @since   JDK1.0
jaroslav@56
    87
 */
jaroslav@56
    88
public final
jaroslav@260
    89
    class Class<T> implements java.io.Serializable,
jaroslav@260
    90
                              java.lang.reflect.GenericDeclaration,
jaroslav@260
    91
                              java.lang.reflect.Type,
jaroslav@260
    92
                              java.lang.reflect.AnnotatedElement {
jaroslav@56
    93
    private static final int ANNOTATION= 0x00002000;
jaroslav@56
    94
    private static final int ENUM      = 0x00004000;
jaroslav@56
    95
    private static final int SYNTHETIC = 0x00001000;
jaroslav@56
    96
jaroslav@56
    97
    /*
jaroslav@56
    98
     * Constructor. Only the Java Virtual Machine creates Class
jaroslav@56
    99
     * objects.
jaroslav@56
   100
     */
jaroslav@56
   101
    private Class() {}
jaroslav@56
   102
jaroslav@56
   103
jaroslav@56
   104
    /**
jaroslav@56
   105
     * Converts the object to a string. The string representation is the
jaroslav@56
   106
     * string "class" or "interface", followed by a space, and then by the
jaroslav@56
   107
     * fully qualified name of the class in the format returned by
jaroslav@56
   108
     * {@code getName}.  If this {@code Class} object represents a
jaroslav@56
   109
     * primitive type, this method returns the name of the primitive type.  If
jaroslav@56
   110
     * this {@code Class} object represents void this method returns
jaroslav@56
   111
     * "void".
jaroslav@56
   112
     *
jaroslav@56
   113
     * @return a string representation of this class object.
jaroslav@56
   114
     */
jaroslav@56
   115
    public String toString() {
jaroslav@56
   116
        return (isInterface() ? "interface " : (isPrimitive() ? "" : "class "))
jaroslav@56
   117
            + getName();
jaroslav@56
   118
    }
jaroslav@56
   119
jaroslav@56
   120
jaroslav@56
   121
    /**
jaroslav@56
   122
     * Returns the {@code Class} object associated with the class or
jaroslav@56
   123
     * interface with the given string name.  Invoking this method is
jaroslav@56
   124
     * equivalent to:
jaroslav@56
   125
     *
jaroslav@56
   126
     * <blockquote>
jaroslav@56
   127
     *  {@code Class.forName(className, true, currentLoader)}
jaroslav@56
   128
     * </blockquote>
jaroslav@56
   129
     *
jaroslav@56
   130
     * where {@code currentLoader} denotes the defining class loader of
jaroslav@56
   131
     * the current class.
jaroslav@56
   132
     *
jaroslav@56
   133
     * <p> For example, the following code fragment returns the
jaroslav@56
   134
     * runtime {@code Class} descriptor for the class named
jaroslav@56
   135
     * {@code java.lang.Thread}:
jaroslav@56
   136
     *
jaroslav@56
   137
     * <blockquote>
jaroslav@56
   138
     *   {@code Class t = Class.forName("java.lang.Thread")}
jaroslav@56
   139
     * </blockquote>
jaroslav@56
   140
     * <p>
jaroslav@56
   141
     * A call to {@code forName("X")} causes the class named
jaroslav@56
   142
     * {@code X} to be initialized.
jaroslav@56
   143
     *
jaroslav@56
   144
     * @param      className   the fully qualified name of the desired class.
jaroslav@56
   145
     * @return     the {@code Class} object for the class with the
jaroslav@56
   146
     *             specified name.
jaroslav@56
   147
     * @exception LinkageError if the linkage fails
jaroslav@56
   148
     * @exception ExceptionInInitializerError if the initialization provoked
jaroslav@56
   149
     *            by this method fails
jaroslav@56
   150
     * @exception ClassNotFoundException if the class cannot be located
jaroslav@56
   151
     */
jaroslav@56
   152
    public static Class<?> forName(String className)
jaroslav@450
   153
    throws ClassNotFoundException {
jaroslav@450
   154
        if (className.startsWith("[")) {
jaroslav@1532
   155
            Class<?> arrType = defineArray(className, null);
jaroslav@452
   156
            Class<?> c = arrType;
jaroslav@452
   157
            while (c != null && c.isArray()) {
jaroslav@452
   158
                c = c.getComponentType0(); // verify component type is sane
jaroslav@452
   159
            }
jaroslav@452
   160
            return arrType;
jaroslav@450
   161
        }
jaroslav@1252
   162
        try {
jaroslav@1252
   163
            Class<?> c = loadCls(className, className.replace('.', '_'));
jaroslav@1252
   164
            if (c == null) {
jaroslav@1252
   165
                throw new ClassNotFoundException(className);
jaroslav@1252
   166
            }
jaroslav@1252
   167
            return c;
jaroslav@1252
   168
        } catch (Throwable ex) {
jaroslav@1252
   169
            throw new ClassNotFoundException(className, ex);
jaroslav@321
   170
        }
jaroslav@56
   171
    }
jaroslav@562
   172
jaroslav@562
   173
jaroslav@562
   174
    /**
jaroslav@562
   175
     * Returns the {@code Class} object associated with the class or
jaroslav@562
   176
     * interface with the given string name, using the given class loader.
jaroslav@562
   177
     * Given the fully qualified name for a class or interface (in the same
jaroslav@562
   178
     * format returned by {@code getName}) this method attempts to
jaroslav@562
   179
     * locate, load, and link the class or interface.  The specified class
jaroslav@562
   180
     * loader is used to load the class or interface.  If the parameter
jaroslav@562
   181
     * {@code loader} is null, the class is loaded through the bootstrap
jaroslav@562
   182
     * class loader.  The class is initialized only if the
jaroslav@562
   183
     * {@code initialize} parameter is {@code true} and if it has
jaroslav@562
   184
     * not been initialized earlier.
jaroslav@562
   185
     *
jaroslav@562
   186
     * <p> If {@code name} denotes a primitive type or void, an attempt
jaroslav@562
   187
     * will be made to locate a user-defined class in the unnamed package whose
jaroslav@562
   188
     * name is {@code name}. Therefore, this method cannot be used to
jaroslav@562
   189
     * obtain any of the {@code Class} objects representing primitive
jaroslav@562
   190
     * types or void.
jaroslav@562
   191
     *
jaroslav@562
   192
     * <p> If {@code name} denotes an array class, the component type of
jaroslav@562
   193
     * the array class is loaded but not initialized.
jaroslav@562
   194
     *
jaroslav@562
   195
     * <p> For example, in an instance method the expression:
jaroslav@562
   196
     *
jaroslav@562
   197
     * <blockquote>
jaroslav@562
   198
     *  {@code Class.forName("Foo")}
jaroslav@562
   199
     * </blockquote>
jaroslav@562
   200
     *
jaroslav@562
   201
     * is equivalent to:
jaroslav@562
   202
     *
jaroslav@562
   203
     * <blockquote>
jaroslav@562
   204
     *  {@code Class.forName("Foo", true, this.getClass().getClassLoader())}
jaroslav@562
   205
     * </blockquote>
jaroslav@562
   206
     *
jaroslav@562
   207
     * Note that this method throws errors related to loading, linking or
jaroslav@562
   208
     * initializing as specified in Sections 12.2, 12.3 and 12.4 of <em>The
jaroslav@562
   209
     * Java Language Specification</em>.
jaroslav@562
   210
     * Note that this method does not check whether the requested class
jaroslav@562
   211
     * is accessible to its caller.
jaroslav@562
   212
     *
jaroslav@562
   213
     * <p> If the {@code loader} is {@code null}, and a security
jaroslav@562
   214
     * manager is present, and the caller's class loader is not null, then this
jaroslav@562
   215
     * method calls the security manager's {@code checkPermission} method
jaroslav@562
   216
     * with a {@code RuntimePermission("getClassLoader")} permission to
jaroslav@562
   217
     * ensure it's ok to access the bootstrap class loader.
jaroslav@562
   218
     *
jaroslav@562
   219
     * @param name       fully qualified name of the desired class
jaroslav@562
   220
     * @param initialize whether the class must be initialized
jaroslav@562
   221
     * @param loader     class loader from which the class must be loaded
jaroslav@562
   222
     * @return           class object representing the desired class
jaroslav@562
   223
     *
jaroslav@562
   224
     * @exception LinkageError if the linkage fails
jaroslav@562
   225
     * @exception ExceptionInInitializerError if the initialization provoked
jaroslav@562
   226
     *            by this method fails
jaroslav@562
   227
     * @exception ClassNotFoundException if the class cannot be located by
jaroslav@562
   228
     *            the specified class loader
jaroslav@562
   229
     *
jaroslav@562
   230
     * @see       java.lang.Class#forName(String)
jaroslav@562
   231
     * @see       java.lang.ClassLoader
jaroslav@562
   232
     * @since     1.2
jaroslav@562
   233
     */
jaroslav@562
   234
    public static Class<?> forName(String name, boolean initialize,
jaroslav@562
   235
                                   ClassLoader loader)
jaroslav@562
   236
        throws ClassNotFoundException
jaroslav@562
   237
    {
jaroslav@562
   238
        return forName(name);
jaroslav@562
   239
    }
jaroslav@321
   240
    
jaroslav@322
   241
    @JavaScriptBody(args = {"n", "c" }, body =
jaroslav@1585
   242
        "var m = vm[c];\n"
jaroslav@1585
   243
      + "if (!m) {\n"
jaroslav@1585
   244
      + "  var l = vm.loadClass ? vm.loadClass : exports ? exports.loadClass : null;\n"
jaroslav@1585
   245
      + "  if (l) {\n"
jaroslav@1585
   246
      + "    l(n);\n"
jaroslav@658
   247
      + "  }\n"
jaroslav@1585
   248
      + "  if (vm[c]) m = vm[c];\n"
jaroslav@1585
   249
      + "  else if (exports[c]) m = exports[c];\n"
jaroslav@322
   250
      + "}\n"
jaroslav@1585
   251
      + "if (!m) return null;"
jaroslav@1585
   252
      + "m(false);"
jaroslav@1585
   253
      + "return m.$class;"
jaroslav@321
   254
    )
jaroslav@322
   255
    private static native Class<?> loadCls(String n, String c);
jaroslav@56
   256
jaroslav@56
   257
jaroslav@56
   258
    /**
jaroslav@56
   259
     * Creates a new instance of the class represented by this {@code Class}
jaroslav@56
   260
     * object.  The class is instantiated as if by a {@code new}
jaroslav@56
   261
     * expression with an empty argument list.  The class is initialized if it
jaroslav@56
   262
     * has not already been initialized.
jaroslav@56
   263
     *
jaroslav@56
   264
     * <p>Note that this method propagates any exception thrown by the
jaroslav@56
   265
     * nullary constructor, including a checked exception.  Use of
jaroslav@56
   266
     * this method effectively bypasses the compile-time exception
jaroslav@56
   267
     * checking that would otherwise be performed by the compiler.
jaroslav@56
   268
     * The {@link
jaroslav@56
   269
     * java.lang.reflect.Constructor#newInstance(java.lang.Object...)
jaroslav@56
   270
     * Constructor.newInstance} method avoids this problem by wrapping
jaroslav@56
   271
     * any exception thrown by the constructor in a (checked) {@link
jaroslav@56
   272
     * java.lang.reflect.InvocationTargetException}.
jaroslav@56
   273
     *
jaroslav@56
   274
     * @return     a newly allocated instance of the class represented by this
jaroslav@56
   275
     *             object.
jaroslav@56
   276
     * @exception  IllegalAccessException  if the class or its nullary
jaroslav@56
   277
     *               constructor is not accessible.
jaroslav@56
   278
     * @exception  InstantiationException
jaroslav@56
   279
     *               if this {@code Class} represents an abstract class,
jaroslav@56
   280
     *               an interface, an array class, a primitive type, or void;
jaroslav@56
   281
     *               or if the class has no nullary constructor;
jaroslav@56
   282
     *               or if the instantiation fails for some other reason.
jaroslav@56
   283
     * @exception  ExceptionInInitializerError if the initialization
jaroslav@56
   284
     *               provoked by this method fails.
jaroslav@56
   285
     * @exception  SecurityException
jaroslav@56
   286
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@56
   287
     *             following conditions is met:
jaroslav@56
   288
     *
jaroslav@56
   289
     *             <ul>
jaroslav@56
   290
     *
jaroslav@56
   291
     *             <li> invocation of
jaroslav@56
   292
     *             {@link SecurityManager#checkMemberAccess
jaroslav@56
   293
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@56
   294
     *             creation of new instances of this class
jaroslav@56
   295
     *
jaroslav@56
   296
     *             <li> the caller's class loader is not the same as or an
jaroslav@56
   297
     *             ancestor of the class loader for the current class and
jaroslav@56
   298
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@56
   299
     *             s.checkPackageAccess()} denies access to the package
jaroslav@56
   300
     *             of this class
jaroslav@56
   301
     *
jaroslav@56
   302
     *             </ul>
jaroslav@56
   303
     *
jaroslav@56
   304
     */
jaroslav@397
   305
    @JavaScriptBody(args = { "self", "illegal" }, body =
jaroslav@397
   306
          "\nvar c = self.cnstr;"
jaroslav@397
   307
        + "\nif (c['cons__V']) {"
jaroslav@1612
   308
        + "\n  if ((c['cons__V'].access & 0x1) != 0) {"
jaroslav@397
   309
        + "\n    var inst = c();"
jaroslav@1612
   310
        + "\n    c['cons__V'].call(inst);"
jaroslav@397
   311
        + "\n    return inst;"
jaroslav@397
   312
        + "\n  }"
jaroslav@397
   313
        + "\n  return illegal;"
jaroslav@397
   314
        + "\n}"
jaroslav@397
   315
        + "\nreturn null;"
jaroslav@231
   316
    )
jaroslav@397
   317
    private static native Object newInstance0(Class<?> self, Object illegal);
jaroslav@397
   318
    
jaroslav@56
   319
    public T newInstance()
jaroslav@56
   320
        throws InstantiationException, IllegalAccessException
jaroslav@56
   321
    {
jaroslav@397
   322
        Object illegal = new Object();
jaroslav@397
   323
        Object inst = newInstance0(this, illegal);
jaroslav@397
   324
        if (inst == null) {
jaroslav@397
   325
            throw new InstantiationException(getName());
jaroslav@397
   326
        }
jaroslav@397
   327
        if (inst == illegal) {
jaroslav@397
   328
            throw new IllegalAccessException();
jaroslav@397
   329
        }
jaroslav@397
   330
        return (T)inst;
jaroslav@56
   331
    }
jaroslav@56
   332
jaroslav@56
   333
    /**
jaroslav@56
   334
     * Determines if the specified {@code Object} is assignment-compatible
jaroslav@56
   335
     * with the object represented by this {@code Class}.  This method is
jaroslav@56
   336
     * the dynamic equivalent of the Java language {@code instanceof}
jaroslav@56
   337
     * operator. The method returns {@code true} if the specified
jaroslav@56
   338
     * {@code Object} argument is non-null and can be cast to the
jaroslav@56
   339
     * reference type represented by this {@code Class} object without
jaroslav@56
   340
     * raising a {@code ClassCastException.} It returns {@code false}
jaroslav@56
   341
     * otherwise.
jaroslav@56
   342
     *
jaroslav@56
   343
     * <p> Specifically, if this {@code Class} object represents a
jaroslav@56
   344
     * declared class, this method returns {@code true} if the specified
jaroslav@56
   345
     * {@code Object} argument is an instance of the represented class (or
jaroslav@56
   346
     * of any of its subclasses); it returns {@code false} otherwise. If
jaroslav@56
   347
     * this {@code Class} object represents an array class, this method
jaroslav@56
   348
     * returns {@code true} if the specified {@code Object} argument
jaroslav@56
   349
     * can be converted to an object of the array class by an identity
jaroslav@56
   350
     * conversion or by a widening reference conversion; it returns
jaroslav@56
   351
     * {@code false} otherwise. If this {@code Class} object
jaroslav@56
   352
     * represents an interface, this method returns {@code true} if the
jaroslav@56
   353
     * class or any superclass of the specified {@code Object} argument
jaroslav@56
   354
     * implements this interface; it returns {@code false} otherwise. If
jaroslav@56
   355
     * this {@code Class} object represents a primitive type, this method
jaroslav@56
   356
     * returns {@code false}.
jaroslav@56
   357
     *
jaroslav@56
   358
     * @param   obj the object to check
jaroslav@56
   359
     * @return  true if {@code obj} is an instance of this class
jaroslav@56
   360
     *
jaroslav@56
   361
     * @since JDK1.1
jaroslav@56
   362
     */
jaroslav@434
   363
    public boolean isInstance(Object obj) {
jaroslav@643
   364
        if (obj == null) {
jaroslav@643
   365
            return false;
jaroslav@643
   366
        }
jaroslav@571
   367
        if (isArray()) {
jaroslav@571
   368
            return isAssignableFrom(obj.getClass());
jaroslav@571
   369
        }
jaroslav@571
   370
        
jaroslav@434
   371
        String prop = "$instOf_" + getName().replace('.', '_');
jaroslav@434
   372
        return hasProperty(obj, prop);
jaroslav@434
   373
    }
jaroslav@434
   374
    
jaroslav@434
   375
    @JavaScriptBody(args = { "who", "prop" }, body = 
jaroslav@434
   376
        "if (who[prop]) return true; else return false;"
jaroslav@434
   377
    )
jaroslav@434
   378
    private static native boolean hasProperty(Object who, String prop);
jaroslav@56
   379
jaroslav@56
   380
jaroslav@56
   381
    /**
jaroslav@56
   382
     * Determines if the class or interface represented by this
jaroslav@56
   383
     * {@code Class} object is either the same as, or is a superclass or
jaroslav@56
   384
     * superinterface of, the class or interface represented by the specified
jaroslav@56
   385
     * {@code Class} parameter. It returns {@code true} if so;
jaroslav@56
   386
     * otherwise it returns {@code false}. If this {@code Class}
jaroslav@56
   387
     * object represents a primitive type, this method returns
jaroslav@56
   388
     * {@code true} if the specified {@code Class} parameter is
jaroslav@56
   389
     * exactly this {@code Class} object; otherwise it returns
jaroslav@56
   390
     * {@code false}.
jaroslav@56
   391
     *
jaroslav@56
   392
     * <p> Specifically, this method tests whether the type represented by the
jaroslav@56
   393
     * specified {@code Class} parameter can be converted to the type
jaroslav@56
   394
     * represented by this {@code Class} object via an identity conversion
jaroslav@56
   395
     * or via a widening reference conversion. See <em>The Java Language
jaroslav@56
   396
     * Specification</em>, sections 5.1.1 and 5.1.4 , for details.
jaroslav@56
   397
     *
jaroslav@56
   398
     * @param cls the {@code Class} object to be checked
jaroslav@56
   399
     * @return the {@code boolean} value indicating whether objects of the
jaroslav@56
   400
     * type {@code cls} can be assigned to objects of this class
jaroslav@56
   401
     * @exception NullPointerException if the specified Class parameter is
jaroslav@56
   402
     *            null.
jaroslav@56
   403
     * @since JDK1.1
jaroslav@56
   404
     */
jaroslav@571
   405
    public boolean isAssignableFrom(Class<?> cls) {
jaroslav@571
   406
        if (this == cls) {
jaroslav@571
   407
            return true;
jaroslav@571
   408
        }
jaroslav@1634
   409
        if (this == Object.class) {
jaroslav@1634
   410
            return true;
jaroslav@1634
   411
        }
jaroslav@571
   412
        
jaroslav@571
   413
        if (isArray()) {
jaroslav@571
   414
            final Class<?> cmpType = cls.getComponentType();
jaroslav@571
   415
            if (isPrimitive()) {
jaroslav@571
   416
                return this == cmpType;
jaroslav@571
   417
            }
jaroslav@571
   418
            return cmpType != null && getComponentType().isAssignableFrom(cmpType);
jaroslav@571
   419
        }
jaroslav@886
   420
        if (isPrimitive()) {
jaroslav@886
   421
            return false;
jaroslav@886
   422
        } else {
jaroslav@886
   423
            if (cls.isPrimitive()) {
jaroslav@886
   424
                return false;
jaroslav@886
   425
            }
jaroslav@1634
   426
            if (cls.isArray()) {
jaroslav@1634
   427
                return false;
jaroslav@1634
   428
            }
jaroslav@886
   429
            String prop = "$instOf_" + getName().replace('.', '_');
jaroslav@886
   430
            return hasCnstrProperty(cls, prop);
jaroslav@886
   431
        }
jaroslav@571
   432
    }
jaroslav@56
   433
jaroslav@733
   434
    @JavaScriptBody(args = { "who", "prop" }, body = 
jaroslav@733
   435
        "if (who.cnstr.prototype[prop]) return true; else return false;"
jaroslav@733
   436
    )
jaroslav@733
   437
    private static native boolean hasCnstrProperty(Object who, String prop);
jaroslav@733
   438
    
jaroslav@733
   439
    
jaroslav@56
   440
    /**
jaroslav@56
   441
     * Determines if the specified {@code Class} object represents an
jaroslav@56
   442
     * interface type.
jaroslav@56
   443
     *
jaroslav@56
   444
     * @return  {@code true} if this object represents an interface;
jaroslav@56
   445
     *          {@code false} otherwise.
jaroslav@56
   446
     */
jaroslav@355
   447
    public boolean isInterface() {
jaroslav@355
   448
        return (getAccess() & 0x200) != 0;
jaroslav@355
   449
    }
jaroslav@355
   450
    
jaroslav@443
   451
    @JavaScriptBody(args = {}, body = "return this.access;")
jaroslav@355
   452
    private native int getAccess();
jaroslav@56
   453
jaroslav@56
   454
jaroslav@56
   455
    /**
jaroslav@56
   456
     * Determines if this {@code Class} object represents an array class.
jaroslav@56
   457
     *
jaroslav@56
   458
     * @return  {@code true} if this object represents an array class;
jaroslav@56
   459
     *          {@code false} otherwise.
jaroslav@56
   460
     * @since   JDK1.1
jaroslav@56
   461
     */
jaroslav@228
   462
    public boolean isArray() {
jaroslav@448
   463
        return hasProperty(this, "array"); // NOI18N
jaroslav@228
   464
    }
jaroslav@56
   465
jaroslav@56
   466
jaroslav@56
   467
    /**
jaroslav@56
   468
     * Determines if the specified {@code Class} object represents a
jaroslav@56
   469
     * primitive type.
jaroslav@56
   470
     *
jaroslav@56
   471
     * <p> There are nine predefined {@code Class} objects to represent
jaroslav@56
   472
     * the eight primitive types and void.  These are created by the Java
jaroslav@56
   473
     * Virtual Machine, and have the same names as the primitive types that
jaroslav@56
   474
     * they represent, namely {@code boolean}, {@code byte},
jaroslav@56
   475
     * {@code char}, {@code short}, {@code int},
jaroslav@56
   476
     * {@code long}, {@code float}, and {@code double}.
jaroslav@56
   477
     *
jaroslav@56
   478
     * <p> These objects may only be accessed via the following public static
jaroslav@56
   479
     * final variables, and are the only {@code Class} objects for which
jaroslav@56
   480
     * this method returns {@code true}.
jaroslav@56
   481
     *
jaroslav@56
   482
     * @return true if and only if this class represents a primitive type
jaroslav@56
   483
     *
jaroslav@56
   484
     * @see     java.lang.Boolean#TYPE
jaroslav@56
   485
     * @see     java.lang.Character#TYPE
jaroslav@56
   486
     * @see     java.lang.Byte#TYPE
jaroslav@56
   487
     * @see     java.lang.Short#TYPE
jaroslav@56
   488
     * @see     java.lang.Integer#TYPE
jaroslav@56
   489
     * @see     java.lang.Long#TYPE
jaroslav@56
   490
     * @see     java.lang.Float#TYPE
jaroslav@56
   491
     * @see     java.lang.Double#TYPE
jaroslav@56
   492
     * @see     java.lang.Void#TYPE
jaroslav@56
   493
     * @since JDK1.1
jaroslav@56
   494
     */
jaroslav@443
   495
    @JavaScriptBody(args = {}, body = 
jaroslav@443
   496
           "if (this.primitive) return true;"
jaroslav@354
   497
        + "else return false;"
jaroslav@354
   498
    )
jaroslav@56
   499
    public native boolean isPrimitive();
jaroslav@56
   500
jaroslav@56
   501
    /**
jaroslav@56
   502
     * Returns true if this {@code Class} object represents an annotation
jaroslav@56
   503
     * type.  Note that if this method returns true, {@link #isInterface()}
jaroslav@56
   504
     * would also return true, as all annotation types are also interfaces.
jaroslav@56
   505
     *
jaroslav@56
   506
     * @return {@code true} if this class object represents an annotation
jaroslav@56
   507
     *      type; {@code false} otherwise
jaroslav@56
   508
     * @since 1.5
jaroslav@56
   509
     */
jaroslav@56
   510
    public boolean isAnnotation() {
jaroslav@56
   511
        return (getModifiers() & ANNOTATION) != 0;
jaroslav@56
   512
    }
jaroslav@56
   513
jaroslav@56
   514
    /**
jaroslav@56
   515
     * Returns {@code true} if this class is a synthetic class;
jaroslav@56
   516
     * returns {@code false} otherwise.
jaroslav@56
   517
     * @return {@code true} if and only if this class is a synthetic class as
jaroslav@56
   518
     *         defined by the Java Language Specification.
jaroslav@56
   519
     * @since 1.5
jaroslav@56
   520
     */
jaroslav@56
   521
    public boolean isSynthetic() {
jaroslav@56
   522
        return (getModifiers() & SYNTHETIC) != 0;
jaroslav@56
   523
    }
jaroslav@56
   524
jaroslav@56
   525
    /**
jaroslav@56
   526
     * Returns the  name of the entity (class, interface, array class,
jaroslav@56
   527
     * primitive type, or void) represented by this {@code Class} object,
jaroslav@56
   528
     * as a {@code String}.
jaroslav@56
   529
     *
jaroslav@56
   530
     * <p> If this class object represents a reference type that is not an
jaroslav@56
   531
     * array type then the binary name of the class is returned, as specified
jaroslav@56
   532
     * by
jaroslav@56
   533
     * <cite>The Java&trade; Language Specification</cite>.
jaroslav@56
   534
     *
jaroslav@56
   535
     * <p> If this class object represents a primitive type or void, then the
jaroslav@56
   536
     * name returned is a {@code String} equal to the Java language
jaroslav@56
   537
     * keyword corresponding to the primitive type or void.
jaroslav@56
   538
     *
jaroslav@56
   539
     * <p> If this class object represents a class of arrays, then the internal
jaroslav@56
   540
     * form of the name consists of the name of the element type preceded by
jaroslav@56
   541
     * one or more '{@code [}' characters representing the depth of the array
jaroslav@56
   542
     * nesting.  The encoding of element type names is as follows:
jaroslav@56
   543
     *
jaroslav@56
   544
     * <blockquote><table summary="Element types and encodings">
jaroslav@56
   545
     * <tr><th> Element Type <th> &nbsp;&nbsp;&nbsp; <th> Encoding
jaroslav@56
   546
     * <tr><td> boolean      <td> &nbsp;&nbsp;&nbsp; <td align=center> Z
jaroslav@56
   547
     * <tr><td> byte         <td> &nbsp;&nbsp;&nbsp; <td align=center> B
jaroslav@56
   548
     * <tr><td> char         <td> &nbsp;&nbsp;&nbsp; <td align=center> C
jaroslav@56
   549
     * <tr><td> class or interface
jaroslav@56
   550
     *                       <td> &nbsp;&nbsp;&nbsp; <td align=center> L<i>classname</i>;
jaroslav@56
   551
     * <tr><td> double       <td> &nbsp;&nbsp;&nbsp; <td align=center> D
jaroslav@56
   552
     * <tr><td> float        <td> &nbsp;&nbsp;&nbsp; <td align=center> F
jaroslav@56
   553
     * <tr><td> int          <td> &nbsp;&nbsp;&nbsp; <td align=center> I
jaroslav@56
   554
     * <tr><td> long         <td> &nbsp;&nbsp;&nbsp; <td align=center> J
jaroslav@56
   555
     * <tr><td> short        <td> &nbsp;&nbsp;&nbsp; <td align=center> S
jaroslav@56
   556
     * </table></blockquote>
jaroslav@56
   557
     *
jaroslav@56
   558
     * <p> The class or interface name <i>classname</i> is the binary name of
jaroslav@56
   559
     * the class specified above.
jaroslav@56
   560
     *
jaroslav@56
   561
     * <p> Examples:
jaroslav@56
   562
     * <blockquote><pre>
jaroslav@56
   563
     * String.class.getName()
jaroslav@56
   564
     *     returns "java.lang.String"
jaroslav@56
   565
     * byte.class.getName()
jaroslav@56
   566
     *     returns "byte"
jaroslav@56
   567
     * (new Object[3]).getClass().getName()
jaroslav@56
   568
     *     returns "[Ljava.lang.Object;"
jaroslav@56
   569
     * (new int[3][4][5][6][7][8][9]).getClass().getName()
jaroslav@56
   570
     *     returns "[[[[[[[I"
jaroslav@56
   571
     * </pre></blockquote>
jaroslav@56
   572
     *
jaroslav@56
   573
     * @return  the name of the class or interface
jaroslav@56
   574
     *          represented by this object.
jaroslav@56
   575
     */
jaroslav@56
   576
    public String getName() {
jaroslav@225
   577
        return jvmName().replace('/', '.');
jaroslav@56
   578
    }
jaroslav@56
   579
jaroslav@443
   580
    @JavaScriptBody(args = {}, body = "return this.jvmName;")
jaroslav@225
   581
    private native String jvmName();
jaroslav@225
   582
jaroslav@260
   583
    
jaroslav@260
   584
    /**
jaroslav@260
   585
     * Returns an array of {@code TypeVariable} objects that represent the
jaroslav@260
   586
     * type variables declared by the generic declaration represented by this
jaroslav@260
   587
     * {@code GenericDeclaration} object, in declaration order.  Returns an
jaroslav@260
   588
     * array of length 0 if the underlying generic declaration declares no type
jaroslav@260
   589
     * variables.
jaroslav@260
   590
     *
jaroslav@260
   591
     * @return an array of {@code TypeVariable} objects that represent
jaroslav@260
   592
     *     the type variables declared by this generic declaration
jaroslav@260
   593
     * @throws java.lang.reflect.GenericSignatureFormatError if the generic
jaroslav@260
   594
     *     signature of this generic declaration does not conform to
jaroslav@260
   595
     *     the format specified in
jaroslav@260
   596
     *     <cite>The Java&trade; Virtual Machine Specification</cite>
jaroslav@260
   597
     * @since 1.5
jaroslav@260
   598
     */
jaroslav@260
   599
    public TypeVariable<Class<T>>[] getTypeParameters() {
jaroslav@260
   600
        throw new UnsupportedOperationException();
jaroslav@260
   601
    }
jaroslav@260
   602
 
jaroslav@56
   603
    /**
jaroslav@56
   604
     * Returns the {@code Class} representing the superclass of the entity
jaroslav@56
   605
     * (class, interface, primitive type or void) represented by this
jaroslav@56
   606
     * {@code Class}.  If this {@code Class} represents either the
jaroslav@56
   607
     * {@code Object} class, an interface, a primitive type, or void, then
jaroslav@56
   608
     * null is returned.  If this object represents an array class then the
jaroslav@56
   609
     * {@code Class} object representing the {@code Object} class is
jaroslav@56
   610
     * returned.
jaroslav@56
   611
     *
jaroslav@56
   612
     * @return the superclass of the class represented by this object.
jaroslav@56
   613
     */
jaroslav@443
   614
    @JavaScriptBody(args = {}, body = "return this.superclass;")
jaroslav@56
   615
    public native Class<? super T> getSuperclass();
jaroslav@56
   616
jaroslav@56
   617
    /**
jaroslav@56
   618
     * Returns the Java language modifiers for this class or interface, encoded
jaroslav@56
   619
     * in an integer. The modifiers consist of the Java Virtual Machine's
jaroslav@56
   620
     * constants for {@code public}, {@code protected},
jaroslav@56
   621
     * {@code private}, {@code final}, {@code static},
jaroslav@56
   622
     * {@code abstract} and {@code interface}; they should be decoded
jaroslav@56
   623
     * using the methods of class {@code Modifier}.
jaroslav@56
   624
     *
jaroslav@56
   625
     * <p> If the underlying class is an array class, then its
jaroslav@56
   626
     * {@code public}, {@code private} and {@code protected}
jaroslav@56
   627
     * modifiers are the same as those of its component type.  If this
jaroslav@56
   628
     * {@code Class} represents a primitive type or void, its
jaroslav@56
   629
     * {@code public} modifier is always {@code true}, and its
jaroslav@56
   630
     * {@code protected} and {@code private} modifiers are always
jaroslav@56
   631
     * {@code false}. If this object represents an array class, a
jaroslav@56
   632
     * primitive type or void, then its {@code final} modifier is always
jaroslav@56
   633
     * {@code true} and its interface modifier is always
jaroslav@56
   634
     * {@code false}. The values of its other modifiers are not determined
jaroslav@56
   635
     * by this specification.
jaroslav@56
   636
     *
jaroslav@56
   637
     * <p> The modifier encodings are defined in <em>The Java Virtual Machine
jaroslav@56
   638
     * Specification</em>, table 4.1.
jaroslav@56
   639
     *
jaroslav@56
   640
     * @return the {@code int} representing the modifiers for this class
jaroslav@56
   641
     * @see     java.lang.reflect.Modifier
jaroslav@56
   642
     * @since JDK1.1
jaroslav@56
   643
     */
jaroslav@586
   644
    public int getModifiers() {
jaroslav@586
   645
        return getAccess();
jaroslav@586
   646
    }
jaroslav@56
   647
jaroslav@1419
   648
    /**
jaroslav@1419
   649
     * If the class or interface represented by this {@code Class} object
jaroslav@1419
   650
     * is a member of another class, returns the {@code Class} object
jaroslav@1419
   651
     * representing the class in which it was declared.  This method returns
jaroslav@1419
   652
     * null if this class or interface is not a member of any other class.  If
jaroslav@1419
   653
     * this {@code Class} object represents an array class, a primitive
jaroslav@1419
   654
     * type, or void,then this method returns null.
jaroslav@1419
   655
     *
jaroslav@1419
   656
     * @return the declaring class for this class
jaroslav@1419
   657
     * @since JDK1.1
jaroslav@1419
   658
     */
jaroslav@1419
   659
    public Class<?> getDeclaringClass() {
jaroslav@1419
   660
        throw new SecurityException();
jaroslav@1419
   661
    }
jaroslav@56
   662
jaroslav@56
   663
    /**
jaroslav@56
   664
     * Returns the simple name of the underlying class as given in the
jaroslav@56
   665
     * source code. Returns an empty string if the underlying class is
jaroslav@56
   666
     * anonymous.
jaroslav@56
   667
     *
jaroslav@56
   668
     * <p>The simple name of an array is the simple name of the
jaroslav@56
   669
     * component type with "[]" appended.  In particular the simple
jaroslav@56
   670
     * name of an array whose component type is anonymous is "[]".
jaroslav@56
   671
     *
jaroslav@56
   672
     * @return the simple name of the underlying class
jaroslav@56
   673
     * @since 1.5
jaroslav@56
   674
     */
jaroslav@56
   675
    public String getSimpleName() {
jaroslav@229
   676
        if (isArray())
jaroslav@229
   677
            return getComponentType().getSimpleName()+"[]";
jaroslav@229
   678
jaroslav@229
   679
        String simpleName = getSimpleBinaryName();
jaroslav@229
   680
        if (simpleName == null) { // top level class
jaroslav@229
   681
            simpleName = getName();
jaroslav@229
   682
            return simpleName.substring(simpleName.lastIndexOf(".")+1); // strip the package name
jaroslav@229
   683
        }
jaroslav@229
   684
        // According to JLS3 "Binary Compatibility" (13.1) the binary
jaroslav@229
   685
        // name of non-package classes (not top level) is the binary
jaroslav@229
   686
        // name of the immediately enclosing class followed by a '$' followed by:
jaroslav@229
   687
        // (for nested and inner classes): the simple name.
jaroslav@229
   688
        // (for local classes): 1 or more digits followed by the simple name.
jaroslav@229
   689
        // (for anonymous classes): 1 or more digits.
jaroslav@229
   690
jaroslav@229
   691
        // Since getSimpleBinaryName() will strip the binary name of
jaroslav@229
   692
        // the immediatly enclosing class, we are now looking at a
jaroslav@229
   693
        // string that matches the regular expression "\$[0-9]*"
jaroslav@229
   694
        // followed by a simple name (considering the simple of an
jaroslav@229
   695
        // anonymous class to be the empty string).
jaroslav@229
   696
jaroslav@229
   697
        // Remove leading "\$[0-9]*" from the name
jaroslav@229
   698
        int length = simpleName.length();
jaroslav@229
   699
        if (length < 1 || simpleName.charAt(0) != '$')
jaroslav@229
   700
            throw new IllegalStateException("Malformed class name");
jaroslav@229
   701
        int index = 1;
jaroslav@229
   702
        while (index < length && isAsciiDigit(simpleName.charAt(index)))
jaroslav@229
   703
            index++;
jaroslav@229
   704
        // Eventually, this is the empty string iff this is an anonymous class
jaroslav@229
   705
        return simpleName.substring(index);
jaroslav@56
   706
    }
jaroslav@56
   707
jaroslav@56
   708
    /**
jaroslav@229
   709
     * Returns the "simple binary name" of the underlying class, i.e.,
jaroslav@229
   710
     * the binary name without the leading enclosing class name.
jaroslav@229
   711
     * Returns {@code null} if the underlying class is a top level
jaroslav@229
   712
     * class.
jaroslav@229
   713
     */
jaroslav@229
   714
    private String getSimpleBinaryName() {
jaroslav@229
   715
        Class<?> enclosingClass = null; // XXX getEnclosingClass();
jaroslav@229
   716
        if (enclosingClass == null) // top level class
jaroslav@229
   717
            return null;
jaroslav@229
   718
        // Otherwise, strip the enclosing class' name
jaroslav@229
   719
        try {
jaroslav@229
   720
            return getName().substring(enclosingClass.getName().length());
jaroslav@229
   721
        } catch (IndexOutOfBoundsException ex) {
jaroslav@229
   722
            throw new IllegalStateException("Malformed class name");
jaroslav@229
   723
        }
jaroslav@229
   724
    }
jaroslav@261
   725
jaroslav@261
   726
    /**
jaroslav@261
   727
     * Returns an array containing {@code Field} objects reflecting all
jaroslav@261
   728
     * the accessible public fields of the class or interface represented by
jaroslav@261
   729
     * this {@code Class} object.  The elements in the array returned are
jaroslav@261
   730
     * not sorted and are not in any particular order.  This method returns an
jaroslav@261
   731
     * array of length 0 if the class or interface has no accessible public
jaroslav@261
   732
     * fields, or if it represents an array class, a primitive type, or void.
jaroslav@261
   733
     *
jaroslav@261
   734
     * <p> Specifically, if this {@code Class} object represents a class,
jaroslav@261
   735
     * this method returns the public fields of this class and of all its
jaroslav@261
   736
     * superclasses.  If this {@code Class} object represents an
jaroslav@261
   737
     * interface, this method returns the fields of this interface and of all
jaroslav@261
   738
     * its superinterfaces.
jaroslav@261
   739
     *
jaroslav@261
   740
     * <p> The implicit length field for array class is not reflected by this
jaroslav@261
   741
     * method. User code should use the methods of class {@code Array} to
jaroslav@261
   742
     * manipulate arrays.
jaroslav@261
   743
     *
jaroslav@261
   744
     * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.3.
jaroslav@261
   745
     *
jaroslav@261
   746
     * @return the array of {@code Field} objects representing the
jaroslav@261
   747
     * public fields
jaroslav@261
   748
     * @exception  SecurityException
jaroslav@261
   749
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@261
   750
     *             following conditions is met:
jaroslav@261
   751
     *
jaroslav@261
   752
     *             <ul>
jaroslav@261
   753
     *
jaroslav@261
   754
     *             <li> invocation of
jaroslav@261
   755
     *             {@link SecurityManager#checkMemberAccess
jaroslav@261
   756
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@261
   757
     *             access to the fields within this class
jaroslav@261
   758
     *
jaroslav@261
   759
     *             <li> the caller's class loader is not the same as or an
jaroslav@261
   760
     *             ancestor of the class loader for the current class and
jaroslav@261
   761
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@261
   762
     *             s.checkPackageAccess()} denies access to the package
jaroslav@261
   763
     *             of this class
jaroslav@261
   764
     *
jaroslav@261
   765
     *             </ul>
jaroslav@261
   766
     *
jaroslav@261
   767
     * @since JDK1.1
jaroslav@261
   768
     */
jaroslav@261
   769
    public Field[] getFields() throws SecurityException {
jaroslav@261
   770
        throw new SecurityException();
jaroslav@261
   771
    }
jaroslav@261
   772
jaroslav@261
   773
    /**
jaroslav@261
   774
     * Returns an array containing {@code Method} objects reflecting all
jaroslav@261
   775
     * the public <em>member</em> methods of the class or interface represented
jaroslav@261
   776
     * by this {@code Class} object, including those declared by the class
jaroslav@261
   777
     * or interface and those inherited from superclasses and
jaroslav@261
   778
     * superinterfaces.  Array classes return all the (public) member methods
jaroslav@261
   779
     * inherited from the {@code Object} class.  The elements in the array
jaroslav@261
   780
     * returned are not sorted and are not in any particular order.  This
jaroslav@261
   781
     * method returns an array of length 0 if this {@code Class} object
jaroslav@261
   782
     * represents a class or interface that has no public member methods, or if
jaroslav@261
   783
     * this {@code Class} object represents a primitive type or void.
jaroslav@261
   784
     *
jaroslav@261
   785
     * <p> The class initialization method {@code <clinit>} is not
jaroslav@261
   786
     * included in the returned array. If the class declares multiple public
jaroslav@261
   787
     * member methods with the same parameter types, they are all included in
jaroslav@261
   788
     * the returned array.
jaroslav@261
   789
     *
jaroslav@261
   790
     * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.4.
jaroslav@261
   791
     *
jaroslav@261
   792
     * @return the array of {@code Method} objects representing the
jaroslav@261
   793
     * public methods of this class
jaroslav@261
   794
     * @exception  SecurityException
jaroslav@261
   795
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@261
   796
     *             following conditions is met:
jaroslav@261
   797
     *
jaroslav@261
   798
     *             <ul>
jaroslav@261
   799
     *
jaroslav@261
   800
     *             <li> invocation of
jaroslav@261
   801
     *             {@link SecurityManager#checkMemberAccess
jaroslav@261
   802
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@261
   803
     *             access to the methods within this class
jaroslav@261
   804
     *
jaroslav@261
   805
     *             <li> the caller's class loader is not the same as or an
jaroslav@261
   806
     *             ancestor of the class loader for the current class and
jaroslav@261
   807
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@261
   808
     *             s.checkPackageAccess()} denies access to the package
jaroslav@261
   809
     *             of this class
jaroslav@261
   810
     *
jaroslav@261
   811
     *             </ul>
jaroslav@261
   812
     *
jaroslav@261
   813
     * @since JDK1.1
jaroslav@261
   814
     */
jaroslav@261
   815
    public Method[] getMethods() throws SecurityException {
jaroslav@392
   816
        return MethodImpl.findMethods(this, 0x01);
jaroslav@261
   817
    }
jaroslav@261
   818
jaroslav@261
   819
    /**
jaroslav@261
   820
     * Returns a {@code Field} object that reflects the specified public
jaroslav@261
   821
     * member field of the class or interface represented by this
jaroslav@261
   822
     * {@code Class} object. The {@code name} parameter is a
jaroslav@261
   823
     * {@code String} specifying the simple name of the desired field.
jaroslav@261
   824
     *
jaroslav@261
   825
     * <p> The field to be reflected is determined by the algorithm that
jaroslav@261
   826
     * follows.  Let C be the class represented by this object:
jaroslav@261
   827
     * <OL>
jaroslav@261
   828
     * <LI> If C declares a public field with the name specified, that is the
jaroslav@261
   829
     *      field to be reflected.</LI>
jaroslav@261
   830
     * <LI> If no field was found in step 1 above, this algorithm is applied
jaroslav@261
   831
     *      recursively to each direct superinterface of C. The direct
jaroslav@261
   832
     *      superinterfaces are searched in the order they were declared.</LI>
jaroslav@261
   833
     * <LI> If no field was found in steps 1 and 2 above, and C has a
jaroslav@261
   834
     *      superclass S, then this algorithm is invoked recursively upon S.
jaroslav@261
   835
     *      If C has no superclass, then a {@code NoSuchFieldException}
jaroslav@261
   836
     *      is thrown.</LI>
jaroslav@261
   837
     * </OL>
jaroslav@261
   838
     *
jaroslav@261
   839
     * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.3.
jaroslav@261
   840
     *
jaroslav@261
   841
     * @param name the field name
jaroslav@261
   842
     * @return  the {@code Field} object of this class specified by
jaroslav@261
   843
     * {@code name}
jaroslav@261
   844
     * @exception NoSuchFieldException if a field with the specified name is
jaroslav@261
   845
     *              not found.
jaroslav@261
   846
     * @exception NullPointerException if {@code name} is {@code null}
jaroslav@261
   847
     * @exception  SecurityException
jaroslav@261
   848
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@261
   849
     *             following conditions is met:
jaroslav@261
   850
     *
jaroslav@261
   851
     *             <ul>
jaroslav@261
   852
     *
jaroslav@261
   853
     *             <li> invocation of
jaroslav@261
   854
     *             {@link SecurityManager#checkMemberAccess
jaroslav@261
   855
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@261
   856
     *             access to the field
jaroslav@261
   857
     *
jaroslav@261
   858
     *             <li> the caller's class loader is not the same as or an
jaroslav@261
   859
     *             ancestor of the class loader for the current class and
jaroslav@261
   860
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@261
   861
     *             s.checkPackageAccess()} denies access to the package
jaroslav@261
   862
     *             of this class
jaroslav@261
   863
     *
jaroslav@261
   864
     *             </ul>
jaroslav@261
   865
     *
jaroslav@261
   866
     * @since JDK1.1
jaroslav@261
   867
     */
jaroslav@261
   868
    public Field getField(String name)
jaroslav@261
   869
        throws SecurityException {
jaroslav@261
   870
        throw new SecurityException();
jaroslav@261
   871
    }
jaroslav@229
   872
    
jaroslav@261
   873
    
jaroslav@261
   874
    /**
jaroslav@261
   875
     * Returns a {@code Method} object that reflects the specified public
jaroslav@261
   876
     * member method of the class or interface represented by this
jaroslav@261
   877
     * {@code Class} object. The {@code name} parameter is a
jaroslav@261
   878
     * {@code String} specifying the simple name of the desired method. The
jaroslav@261
   879
     * {@code parameterTypes} parameter is an array of {@code Class}
jaroslav@261
   880
     * objects that identify the method's formal parameter types, in declared
jaroslav@261
   881
     * order. If {@code parameterTypes} is {@code null}, it is
jaroslav@261
   882
     * treated as if it were an empty array.
jaroslav@261
   883
     *
jaroslav@261
   884
     * <p> If the {@code name} is "{@code <init>};"or "{@code <clinit>}" a
jaroslav@261
   885
     * {@code NoSuchMethodException} is raised. Otherwise, the method to
jaroslav@261
   886
     * be reflected is determined by the algorithm that follows.  Let C be the
jaroslav@261
   887
     * class represented by this object:
jaroslav@261
   888
     * <OL>
jaroslav@261
   889
     * <LI> C is searched for any <I>matching methods</I>. If no matching
jaroslav@261
   890
     *      method is found, the algorithm of step 1 is invoked recursively on
jaroslav@261
   891
     *      the superclass of C.</LI>
jaroslav@261
   892
     * <LI> If no method was found in step 1 above, the superinterfaces of C
jaroslav@261
   893
     *      are searched for a matching method. If any such method is found, it
jaroslav@261
   894
     *      is reflected.</LI>
jaroslav@261
   895
     * </OL>
jaroslav@261
   896
     *
jaroslav@261
   897
     * To find a matching method in a class C:&nbsp; If C declares exactly one
jaroslav@261
   898
     * public method with the specified name and exactly the same formal
jaroslav@261
   899
     * parameter types, that is the method reflected. If more than one such
jaroslav@261
   900
     * method is found in C, and one of these methods has a return type that is
jaroslav@261
   901
     * more specific than any of the others, that method is reflected;
jaroslav@261
   902
     * otherwise one of the methods is chosen arbitrarily.
jaroslav@261
   903
     *
jaroslav@261
   904
     * <p>Note that there may be more than one matching method in a
jaroslav@261
   905
     * class because while the Java language forbids a class to
jaroslav@261
   906
     * declare multiple methods with the same signature but different
jaroslav@261
   907
     * return types, the Java virtual machine does not.  This
jaroslav@261
   908
     * increased flexibility in the virtual machine can be used to
jaroslav@261
   909
     * implement various language features.  For example, covariant
jaroslav@261
   910
     * returns can be implemented with {@linkplain
jaroslav@261
   911
     * java.lang.reflect.Method#isBridge bridge methods}; the bridge
jaroslav@261
   912
     * method and the method being overridden would have the same
jaroslav@261
   913
     * signature but different return types.
jaroslav@261
   914
     *
jaroslav@261
   915
     * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.4.
jaroslav@261
   916
     *
jaroslav@261
   917
     * @param name the name of the method
jaroslav@261
   918
     * @param parameterTypes the list of parameters
jaroslav@261
   919
     * @return the {@code Method} object that matches the specified
jaroslav@261
   920
     * {@code name} and {@code parameterTypes}
jaroslav@261
   921
     * @exception NoSuchMethodException if a matching method is not found
jaroslav@261
   922
     *            or if the name is "&lt;init&gt;"or "&lt;clinit&gt;".
jaroslav@261
   923
     * @exception NullPointerException if {@code name} is {@code null}
jaroslav@261
   924
     * @exception  SecurityException
jaroslav@261
   925
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@261
   926
     *             following conditions is met:
jaroslav@261
   927
     *
jaroslav@261
   928
     *             <ul>
jaroslav@261
   929
     *
jaroslav@261
   930
     *             <li> invocation of
jaroslav@261
   931
     *             {@link SecurityManager#checkMemberAccess
jaroslav@261
   932
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@261
   933
     *             access to the method
jaroslav@261
   934
     *
jaroslav@261
   935
     *             <li> the caller's class loader is not the same as or an
jaroslav@261
   936
     *             ancestor of the class loader for the current class and
jaroslav@261
   937
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@261
   938
     *             s.checkPackageAccess()} denies access to the package
jaroslav@261
   939
     *             of this class
jaroslav@261
   940
     *
jaroslav@261
   941
     *             </ul>
jaroslav@261
   942
     *
jaroslav@261
   943
     * @since JDK1.1
jaroslav@261
   944
     */
jaroslav@261
   945
    public Method getMethod(String name, Class<?>... parameterTypes)
jaroslav@420
   946
        throws SecurityException, NoSuchMethodException {
jaroslav@391
   947
        Method m = MethodImpl.findMethod(this, name, parameterTypes);
jaroslav@262
   948
        if (m == null) {
jaroslav@420
   949
            StringBuilder sb = new StringBuilder();
jaroslav@420
   950
            sb.append(getName()).append('.').append(name).append('(');
jaroslav@420
   951
            String sep = "";
jaroslav@420
   952
            for (int i = 0; i < parameterTypes.length; i++) {
jaroslav@420
   953
                sb.append(sep).append(parameterTypes[i].getName());
jaroslav@420
   954
                sep = ", ";
jaroslav@420
   955
            }
jaroslav@420
   956
            sb.append(')');
jaroslav@420
   957
            throw new NoSuchMethodException(sb.toString());
jaroslav@262
   958
        }
jaroslav@262
   959
        return m;
jaroslav@261
   960
    }
jaroslav@604
   961
    
jaroslav@604
   962
    /**
jaroslav@604
   963
     * Returns an array of {@code Method} objects reflecting all the
jaroslav@604
   964
     * methods declared by the class or interface represented by this
jaroslav@604
   965
     * {@code Class} object. This includes public, protected, default
jaroslav@604
   966
     * (package) access, and private methods, but excludes inherited methods.
jaroslav@604
   967
     * The elements in the array returned are not sorted and are not in any
jaroslav@604
   968
     * particular order.  This method returns an array of length 0 if the class
jaroslav@604
   969
     * or interface declares no methods, or if this {@code Class} object
jaroslav@604
   970
     * represents a primitive type, an array class, or void.  The class
jaroslav@604
   971
     * initialization method {@code <clinit>} is not included in the
jaroslav@604
   972
     * returned array. If the class declares multiple public member methods
jaroslav@604
   973
     * with the same parameter types, they are all included in the returned
jaroslav@604
   974
     * array.
jaroslav@604
   975
     *
jaroslav@604
   976
     * <p> See <em>The Java Language Specification</em>, section 8.2.
jaroslav@604
   977
     *
jaroslav@604
   978
     * @return    the array of {@code Method} objects representing all the
jaroslav@604
   979
     * declared methods of this class
jaroslav@604
   980
     * @exception  SecurityException
jaroslav@604
   981
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@604
   982
     *             following conditions is met:
jaroslav@604
   983
     *
jaroslav@604
   984
     *             <ul>
jaroslav@604
   985
     *
jaroslav@604
   986
     *             <li> invocation of
jaroslav@604
   987
     *             {@link SecurityManager#checkMemberAccess
jaroslav@604
   988
     *             s.checkMemberAccess(this, Member.DECLARED)} denies
jaroslav@604
   989
     *             access to the declared methods within this class
jaroslav@604
   990
     *
jaroslav@604
   991
     *             <li> the caller's class loader is not the same as or an
jaroslav@604
   992
     *             ancestor of the class loader for the current class and
jaroslav@604
   993
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@604
   994
     *             s.checkPackageAccess()} denies access to the package
jaroslav@604
   995
     *             of this class
jaroslav@604
   996
     *
jaroslav@604
   997
     *             </ul>
jaroslav@604
   998
     *
jaroslav@604
   999
     * @since JDK1.1
jaroslav@604
  1000
     */
jaroslav@604
  1001
    public Method[] getDeclaredMethods() throws SecurityException {
jaroslav@604
  1002
        throw new SecurityException();
jaroslav@604
  1003
    }
jaroslav@604
  1004
    
jaroslav@229
  1005
    /**
jaroslav@1312
  1006
     * Returns an array of {@code Field} objects reflecting all the fields
jaroslav@1312
  1007
     * declared by the class or interface represented by this
jaroslav@1312
  1008
     * {@code Class} object. This includes public, protected, default
jaroslav@1312
  1009
     * (package) access, and private fields, but excludes inherited fields.
jaroslav@1312
  1010
     * The elements in the array returned are not sorted and are not in any
jaroslav@1312
  1011
     * particular order.  This method returns an array of length 0 if the class
jaroslav@1312
  1012
     * or interface declares no fields, or if this {@code Class} object
jaroslav@1312
  1013
     * represents a primitive type, an array class, or void.
jaroslav@1312
  1014
     *
jaroslav@1312
  1015
     * <p> See <em>The Java Language Specification</em>, sections 8.2 and 8.3.
jaroslav@1312
  1016
     *
jaroslav@1312
  1017
     * @return    the array of {@code Field} objects representing all the
jaroslav@1312
  1018
     * declared fields of this class
jaroslav@1312
  1019
     * @exception  SecurityException
jaroslav@1312
  1020
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1312
  1021
     *             following conditions is met:
jaroslav@1312
  1022
     *
jaroslav@1312
  1023
     *             <ul>
jaroslav@1312
  1024
     *
jaroslav@1312
  1025
     *             <li> invocation of
jaroslav@1312
  1026
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1312
  1027
     *             s.checkMemberAccess(this, Member.DECLARED)} denies
jaroslav@1312
  1028
     *             access to the declared fields within this class
jaroslav@1312
  1029
     *
jaroslav@1312
  1030
     *             <li> the caller's class loader is not the same as or an
jaroslav@1312
  1031
     *             ancestor of the class loader for the current class and
jaroslav@1312
  1032
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1312
  1033
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1312
  1034
     *             of this class
jaroslav@1312
  1035
     *
jaroslav@1312
  1036
     *             </ul>
jaroslav@1312
  1037
     *
jaroslav@1312
  1038
     * @since JDK1.1
jaroslav@1312
  1039
     */
jaroslav@1312
  1040
    public Field[] getDeclaredFields() throws SecurityException {
jaroslav@1312
  1041
        throw new SecurityException();
jaroslav@1312
  1042
    }
jaroslav@1312
  1043
jaroslav@1312
  1044
    /**
jaroslav@1312
  1045
     * <b>Bck2Brwsr</b> emulation can only seek public methods, otherwise it
jaroslav@1312
  1046
     * throws a {@code SecurityException}.
jaroslav@1312
  1047
     * <p>
jaroslav@1312
  1048
     * Returns a {@code Method} object that reflects the specified
jaroslav@1312
  1049
     * declared method of the class or interface represented by this
jaroslav@1312
  1050
     * {@code Class} object. The {@code name} parameter is a
jaroslav@1312
  1051
     * {@code String} that specifies the simple name of the desired
jaroslav@1312
  1052
     * method, and the {@code parameterTypes} parameter is an array of
jaroslav@1312
  1053
     * {@code Class} objects that identify the method's formal parameter
jaroslav@1312
  1054
     * types, in declared order.  If more than one method with the same
jaroslav@1312
  1055
     * parameter types is declared in a class, and one of these methods has a
jaroslav@1312
  1056
     * return type that is more specific than any of the others, that method is
jaroslav@1312
  1057
     * returned; otherwise one of the methods is chosen arbitrarily.  If the
jaroslav@1312
  1058
     * name is "&lt;init&gt;"or "&lt;clinit&gt;" a {@code NoSuchMethodException}
jaroslav@1312
  1059
     * is raised.
jaroslav@1312
  1060
     *
jaroslav@1312
  1061
     * @param name the name of the method
jaroslav@1312
  1062
     * @param parameterTypes the parameter array
jaroslav@1312
  1063
     * @return    the {@code Method} object for the method of this class
jaroslav@1312
  1064
     * matching the specified name and parameters
jaroslav@1312
  1065
     * @exception NoSuchMethodException if a matching method is not found.
jaroslav@1312
  1066
     * @exception NullPointerException if {@code name} is {@code null}
jaroslav@1312
  1067
     * @exception  SecurityException
jaroslav@1312
  1068
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1312
  1069
     *             following conditions is met:
jaroslav@1312
  1070
     *
jaroslav@1312
  1071
     *             <ul>
jaroslav@1312
  1072
     *
jaroslav@1312
  1073
     *             <li> invocation of
jaroslav@1312
  1074
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1312
  1075
     *             s.checkMemberAccess(this, Member.DECLARED)} denies
jaroslav@1312
  1076
     *             access to the declared method
jaroslav@1312
  1077
     *
jaroslav@1312
  1078
     *             <li> the caller's class loader is not the same as or an
jaroslav@1312
  1079
     *             ancestor of the class loader for the current class and
jaroslav@1312
  1080
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1312
  1081
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1312
  1082
     *             of this class
jaroslav@1312
  1083
     *
jaroslav@1312
  1084
     *             </ul>
jaroslav@1312
  1085
     *
jaroslav@1312
  1086
     * @since JDK1.1
jaroslav@1312
  1087
     */
jaroslav@1312
  1088
    public Method getDeclaredMethod(String name, Class<?>... parameterTypes)
jaroslav@1312
  1089
    throws NoSuchMethodException, SecurityException {
jaroslav@1312
  1090
        try {
jaroslav@1312
  1091
            return getMethod(name, parameterTypes);
jaroslav@1312
  1092
        } catch (NoSuchMethodException ex) {
jaroslav@1312
  1093
            throw new SecurityException();
jaroslav@1312
  1094
        }
jaroslav@1312
  1095
    }
jaroslav@1312
  1096
jaroslav@1312
  1097
    /**
jaroslav@1312
  1098
     * Returns a {@code Field} object that reflects the specified declared
jaroslav@1312
  1099
     * field of the class or interface represented by this {@code Class}
jaroslav@1312
  1100
     * object. The {@code name} parameter is a {@code String} that
jaroslav@1312
  1101
     * specifies the simple name of the desired field.  Note that this method
jaroslav@1312
  1102
     * will not reflect the {@code length} field of an array class.
jaroslav@1312
  1103
     *
jaroslav@1312
  1104
     * @param name the name of the field
jaroslav@1312
  1105
     * @return the {@code Field} object for the specified field in this
jaroslav@1312
  1106
     * class
jaroslav@1312
  1107
     * @exception NoSuchFieldException if a field with the specified name is
jaroslav@1312
  1108
     *              not found.
jaroslav@1312
  1109
     * @exception NullPointerException if {@code name} is {@code null}
jaroslav@1312
  1110
     * @exception  SecurityException
jaroslav@1312
  1111
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1312
  1112
     *             following conditions is met:
jaroslav@1312
  1113
     *
jaroslav@1312
  1114
     *             <ul>
jaroslav@1312
  1115
     *
jaroslav@1312
  1116
     *             <li> invocation of
jaroslav@1312
  1117
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1312
  1118
     *             s.checkMemberAccess(this, Member.DECLARED)} denies
jaroslav@1312
  1119
     *             access to the declared field
jaroslav@1312
  1120
     *
jaroslav@1312
  1121
     *             <li> the caller's class loader is not the same as or an
jaroslav@1312
  1122
     *             ancestor of the class loader for the current class and
jaroslav@1312
  1123
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1312
  1124
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1312
  1125
     *             of this class
jaroslav@1312
  1126
     *
jaroslav@1312
  1127
     *             </ul>
jaroslav@1312
  1128
     *
jaroslav@1312
  1129
     * @since JDK1.1
jaroslav@1312
  1130
     */
jaroslav@1312
  1131
    public Field getDeclaredField(String name)
jaroslav@1312
  1132
    throws SecurityException {
jaroslav@1312
  1133
        throw new SecurityException();
jaroslav@1312
  1134
    }
jaroslav@1312
  1135
    
jaroslav@1312
  1136
    /**
jaroslav@1321
  1137
     * Returns an array containing {@code Constructor} objects reflecting
jaroslav@1321
  1138
     * all the public constructors of the class represented by this
jaroslav@1321
  1139
     * {@code Class} object.  An array of length 0 is returned if the
jaroslav@1321
  1140
     * class has no public constructors, or if the class is an array class, or
jaroslav@1321
  1141
     * if the class reflects a primitive type or void.
jaroslav@1321
  1142
     *
jaroslav@1321
  1143
     * Note that while this method returns an array of {@code
jaroslav@1321
  1144
     * Constructor<T>} objects (that is an array of constructors from
jaroslav@1321
  1145
     * this class), the return type of this method is {@code
jaroslav@1321
  1146
     * Constructor<?>[]} and <em>not</em> {@code Constructor<T>[]} as
jaroslav@1321
  1147
     * might be expected.  This less informative return type is
jaroslav@1321
  1148
     * necessary since after being returned from this method, the
jaroslav@1321
  1149
     * array could be modified to hold {@code Constructor} objects for
jaroslav@1321
  1150
     * different classes, which would violate the type guarantees of
jaroslav@1321
  1151
     * {@code Constructor<T>[]}.
jaroslav@1321
  1152
     *
jaroslav@1321
  1153
     * @return the array of {@code Constructor} objects representing the
jaroslav@1321
  1154
     *  public constructors of this class
jaroslav@1321
  1155
     * @exception  SecurityException
jaroslav@1321
  1156
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1321
  1157
     *             following conditions is met:
jaroslav@1321
  1158
     *
jaroslav@1321
  1159
     *             <ul>
jaroslav@1321
  1160
     *
jaroslav@1321
  1161
     *             <li> invocation of
jaroslav@1321
  1162
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1321
  1163
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@1321
  1164
     *             access to the constructors within this class
jaroslav@1321
  1165
     *
jaroslav@1321
  1166
     *             <li> the caller's class loader is not the same as or an
jaroslav@1321
  1167
     *             ancestor of the class loader for the current class and
jaroslav@1321
  1168
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1321
  1169
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1321
  1170
     *             of this class
jaroslav@1321
  1171
     *
jaroslav@1321
  1172
     *             </ul>
jaroslav@1321
  1173
     *
jaroslav@1321
  1174
     * @since JDK1.1
jaroslav@1321
  1175
     */
jaroslav@1321
  1176
    public Constructor<?>[] getConstructors() throws SecurityException {
jaroslav@1321
  1177
        return MethodImpl.findConstructors(this, 0x01);
jaroslav@1321
  1178
    }
jaroslav@1321
  1179
jaroslav@1321
  1180
    /**
jaroslav@1321
  1181
     * Returns a {@code Constructor} object that reflects the specified
jaroslav@1321
  1182
     * public constructor of the class represented by this {@code Class}
jaroslav@1321
  1183
     * object. The {@code parameterTypes} parameter is an array of
jaroslav@1321
  1184
     * {@code Class} objects that identify the constructor's formal
jaroslav@1321
  1185
     * parameter types, in declared order.
jaroslav@1321
  1186
     *
jaroslav@1321
  1187
     * If this {@code Class} object represents an inner class
jaroslav@1321
  1188
     * declared in a non-static context, the formal parameter types
jaroslav@1321
  1189
     * include the explicit enclosing instance as the first parameter.
jaroslav@1321
  1190
     *
jaroslav@1321
  1191
     * <p> The constructor to reflect is the public constructor of the class
jaroslav@1321
  1192
     * represented by this {@code Class} object whose formal parameter
jaroslav@1321
  1193
     * types match those specified by {@code parameterTypes}.
jaroslav@1321
  1194
     *
jaroslav@1321
  1195
     * @param parameterTypes the parameter array
jaroslav@1321
  1196
     * @return the {@code Constructor} object of the public constructor that
jaroslav@1321
  1197
     * matches the specified {@code parameterTypes}
jaroslav@1321
  1198
     * @exception NoSuchMethodException if a matching method is not found.
jaroslav@1321
  1199
     * @exception  SecurityException
jaroslav@1321
  1200
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1321
  1201
     *             following conditions is met:
jaroslav@1321
  1202
     *
jaroslav@1321
  1203
     *             <ul>
jaroslav@1321
  1204
     *
jaroslav@1321
  1205
     *             <li> invocation of
jaroslav@1321
  1206
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1321
  1207
     *             s.checkMemberAccess(this, Member.PUBLIC)} denies
jaroslav@1321
  1208
     *             access to the constructor
jaroslav@1321
  1209
     *
jaroslav@1321
  1210
     *             <li> the caller's class loader is not the same as or an
jaroslav@1321
  1211
     *             ancestor of the class loader for the current class and
jaroslav@1321
  1212
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1321
  1213
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1321
  1214
     *             of this class
jaroslav@1321
  1215
     *
jaroslav@1321
  1216
     *             </ul>
jaroslav@1321
  1217
     *
jaroslav@1321
  1218
     * @since JDK1.1
jaroslav@1321
  1219
     */
jaroslav@1321
  1220
    public Constructor<T> getConstructor(Class<?>... parameterTypes)
jaroslav@1321
  1221
    throws NoSuchMethodException, SecurityException {
jaroslav@1321
  1222
        Constructor c = MethodImpl.findConstructor(this, parameterTypes);
jaroslav@1321
  1223
        if (c == null) {
jaroslav@1321
  1224
            StringBuilder sb = new StringBuilder();
jaroslav@1321
  1225
            sb.append(getName()).append('(');
jaroslav@1321
  1226
            String sep = "";
jaroslav@1321
  1227
            for (int i = 0; i < parameterTypes.length; i++) {
jaroslav@1321
  1228
                sb.append(sep).append(parameterTypes[i].getName());
jaroslav@1321
  1229
                sep = ", ";
jaroslav@1321
  1230
            }
jaroslav@1321
  1231
            sb.append(')');
jaroslav@1321
  1232
            throw new NoSuchMethodException(sb.toString());
jaroslav@1321
  1233
        }
jaroslav@1321
  1234
        return c;
jaroslav@1321
  1235
    }
jaroslav@1321
  1236
jaroslav@1321
  1237
    /**
jaroslav@1321
  1238
     * Returns an array of {@code Constructor} objects reflecting all the
jaroslav@1321
  1239
     * constructors declared by the class represented by this
jaroslav@1321
  1240
     * {@code Class} object. These are public, protected, default
jaroslav@1321
  1241
     * (package) access, and private constructors.  The elements in the array
jaroslav@1321
  1242
     * returned are not sorted and are not in any particular order.  If the
jaroslav@1321
  1243
     * class has a default constructor, it is included in the returned array.
jaroslav@1321
  1244
     * This method returns an array of length 0 if this {@code Class}
jaroslav@1321
  1245
     * object represents an interface, a primitive type, an array class, or
jaroslav@1321
  1246
     * void.
jaroslav@1321
  1247
     *
jaroslav@1321
  1248
     * <p> See <em>The Java Language Specification</em>, section 8.2.
jaroslav@1321
  1249
     *
jaroslav@1321
  1250
     * @return    the array of {@code Constructor} objects representing all the
jaroslav@1321
  1251
     * declared constructors of this class
jaroslav@1321
  1252
     * @exception  SecurityException
jaroslav@1321
  1253
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1321
  1254
     *             following conditions is met:
jaroslav@1321
  1255
     *
jaroslav@1321
  1256
     *             <ul>
jaroslav@1321
  1257
     *
jaroslav@1321
  1258
     *             <li> invocation of
jaroslav@1321
  1259
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1321
  1260
     *             s.checkMemberAccess(this, Member.DECLARED)} denies
jaroslav@1321
  1261
     *             access to the declared constructors within this class
jaroslav@1321
  1262
     *
jaroslav@1321
  1263
     *             <li> the caller's class loader is not the same as or an
jaroslav@1321
  1264
     *             ancestor of the class loader for the current class and
jaroslav@1321
  1265
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1321
  1266
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1321
  1267
     *             of this class
jaroslav@1321
  1268
     *
jaroslav@1321
  1269
     *             </ul>
jaroslav@1321
  1270
     *
jaroslav@1321
  1271
     * @since JDK1.1
jaroslav@1321
  1272
     */
jaroslav@1321
  1273
    public Constructor<?>[] getDeclaredConstructors() throws SecurityException {
jaroslav@1321
  1274
        throw new SecurityException();
jaroslav@1321
  1275
    }
jaroslav@1321
  1276
    /**
jaroslav@1321
  1277
     * Returns a {@code Constructor} object that reflects the specified
jaroslav@1321
  1278
     * constructor of the class or interface represented by this
jaroslav@1321
  1279
     * {@code Class} object.  The {@code parameterTypes} parameter is
jaroslav@1321
  1280
     * an array of {@code Class} objects that identify the constructor's
jaroslav@1321
  1281
     * formal parameter types, in declared order.
jaroslav@1321
  1282
     *
jaroslav@1321
  1283
     * If this {@code Class} object represents an inner class
jaroslav@1321
  1284
     * declared in a non-static context, the formal parameter types
jaroslav@1321
  1285
     * include the explicit enclosing instance as the first parameter.
jaroslav@1321
  1286
     *
jaroslav@1321
  1287
     * @param parameterTypes the parameter array
jaroslav@1321
  1288
     * @return    The {@code Constructor} object for the constructor with the
jaroslav@1321
  1289
     * specified parameter list
jaroslav@1321
  1290
     * @exception NoSuchMethodException if a matching method is not found.
jaroslav@1321
  1291
     * @exception  SecurityException
jaroslav@1321
  1292
     *             If a security manager, <i>s</i>, is present and any of the
jaroslav@1321
  1293
     *             following conditions is met:
jaroslav@1321
  1294
     *
jaroslav@1321
  1295
     *             <ul>
jaroslav@1321
  1296
     *
jaroslav@1321
  1297
     *             <li> invocation of
jaroslav@1321
  1298
     *             {@link SecurityManager#checkMemberAccess
jaroslav@1321
  1299
     *             s.checkMemberAccess(this, Member.DECLARED)} denies
jaroslav@1321
  1300
     *             access to the declared constructor
jaroslav@1321
  1301
     *
jaroslav@1321
  1302
     *             <li> the caller's class loader is not the same as or an
jaroslav@1321
  1303
     *             ancestor of the class loader for the current class and
jaroslav@1321
  1304
     *             invocation of {@link SecurityManager#checkPackageAccess
jaroslav@1321
  1305
     *             s.checkPackageAccess()} denies access to the package
jaroslav@1321
  1306
     *             of this class
jaroslav@1321
  1307
     *
jaroslav@1321
  1308
     *             </ul>
jaroslav@1321
  1309
     *
jaroslav@1321
  1310
     * @since JDK1.1
jaroslav@1321
  1311
     */
jaroslav@1321
  1312
    public Constructor<T> getDeclaredConstructor(Class<?>... parameterTypes)
jaroslav@1321
  1313
    throws NoSuchMethodException, SecurityException {
jaroslav@1321
  1314
        return getConstructor(parameterTypes);
jaroslav@1321
  1315
    }
jaroslav@1321
  1316
    
jaroslav@1321
  1317
    
jaroslav@1321
  1318
    /**
jaroslav@56
  1319
     * Character.isDigit answers {@code true} to some non-ascii
jaroslav@56
  1320
     * digits.  This one does not.
jaroslav@56
  1321
     */
jaroslav@56
  1322
    private static boolean isAsciiDigit(char c) {
jaroslav@56
  1323
        return '0' <= c && c <= '9';
jaroslav@56
  1324
    }
jaroslav@56
  1325
jaroslav@56
  1326
    /**
jaroslav@56
  1327
     * Returns the canonical name of the underlying class as
jaroslav@56
  1328
     * defined by the Java Language Specification.  Returns null if
jaroslav@56
  1329
     * the underlying class does not have a canonical name (i.e., if
jaroslav@56
  1330
     * it is a local or anonymous class or an array whose component
jaroslav@56
  1331
     * type does not have a canonical name).
jaroslav@56
  1332
     * @return the canonical name of the underlying class if it exists, and
jaroslav@56
  1333
     * {@code null} otherwise.
jaroslav@56
  1334
     * @since 1.5
jaroslav@56
  1335
     */
jaroslav@56
  1336
    public String getCanonicalName() {
jaroslav@228
  1337
        if (isArray()) {
jaroslav@228
  1338
            String canonicalName = getComponentType().getCanonicalName();
jaroslav@228
  1339
            if (canonicalName != null)
jaroslav@228
  1340
                return canonicalName + "[]";
jaroslav@228
  1341
            else
jaroslav@228
  1342
                return null;
jaroslav@228
  1343
        }
jaroslav@65
  1344
//        if (isLocalOrAnonymousClass())
jaroslav@65
  1345
//            return null;
jaroslav@65
  1346
//        Class<?> enclosingClass = getEnclosingClass();
jaroslav@228
  1347
        Class<?> enclosingClass = null;
jaroslav@228
  1348
        if (enclosingClass == null) { // top level class
jaroslav@228
  1349
            return getName();
jaroslav@228
  1350
        } else {
jaroslav@228
  1351
            String enclosingName = enclosingClass.getCanonicalName();
jaroslav@228
  1352
            if (enclosingName == null)
jaroslav@228
  1353
                return null;
jaroslav@228
  1354
            return enclosingName + "." + getSimpleName();
jaroslav@228
  1355
        }
jaroslav@56
  1356
    }
jaroslav@56
  1357
jaroslav@56
  1358
    /**
jaroslav@56
  1359
     * Finds a resource with a given name.  The rules for searching resources
jaroslav@56
  1360
     * associated with a given class are implemented by the defining
jaroslav@56
  1361
     * {@linkplain ClassLoader class loader} of the class.  This method
jaroslav@56
  1362
     * delegates to this object's class loader.  If this object was loaded by
jaroslav@56
  1363
     * the bootstrap class loader, the method delegates to {@link
jaroslav@56
  1364
     * ClassLoader#getSystemResourceAsStream}.
jaroslav@56
  1365
     *
jaroslav@56
  1366
     * <p> Before delegation, an absolute resource name is constructed from the
jaroslav@56
  1367
     * given resource name using this algorithm:
jaroslav@56
  1368
     *
jaroslav@56
  1369
     * <ul>
jaroslav@56
  1370
     *
jaroslav@56
  1371
     * <li> If the {@code name} begins with a {@code '/'}
jaroslav@56
  1372
     * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
jaroslav@56
  1373
     * portion of the {@code name} following the {@code '/'}.
jaroslav@56
  1374
     *
jaroslav@56
  1375
     * <li> Otherwise, the absolute name is of the following form:
jaroslav@56
  1376
     *
jaroslav@56
  1377
     * <blockquote>
jaroslav@56
  1378
     *   {@code modified_package_name/name}
jaroslav@56
  1379
     * </blockquote>
jaroslav@56
  1380
     *
jaroslav@56
  1381
     * <p> Where the {@code modified_package_name} is the package name of this
jaroslav@56
  1382
     * object with {@code '/'} substituted for {@code '.'}
jaroslav@56
  1383
     * (<tt>'&#92;u002e'</tt>).
jaroslav@56
  1384
     *
jaroslav@56
  1385
     * </ul>
jaroslav@56
  1386
     *
jaroslav@56
  1387
     * @param  name name of the desired resource
jaroslav@56
  1388
     * @return      A {@link java.io.InputStream} object or {@code null} if
jaroslav@56
  1389
     *              no resource with this name is found
jaroslav@56
  1390
     * @throws  NullPointerException If {@code name} is {@code null}
jaroslav@56
  1391
     * @since  JDK1.1
jaroslav@56
  1392
     */
jaroslav@122
  1393
     public InputStream getResourceAsStream(String name) {
jaroslav@122
  1394
        name = resolveName(name);
jaroslav@1375
  1395
        byte[] arr = ClassLoader.getResourceAsStream0(name, 0);
jaroslav@424
  1396
        return arr == null ? null : new ByteArrayInputStream(arr);
jaroslav@424
  1397
     }
jaroslav@1375
  1398
    
jaroslav@56
  1399
    /**
jaroslav@56
  1400
     * Finds a resource with a given name.  The rules for searching resources
jaroslav@56
  1401
     * associated with a given class are implemented by the defining
jaroslav@56
  1402
     * {@linkplain ClassLoader class loader} of the class.  This method
jaroslav@56
  1403
     * delegates to this object's class loader.  If this object was loaded by
jaroslav@56
  1404
     * the bootstrap class loader, the method delegates to {@link
jaroslav@56
  1405
     * ClassLoader#getSystemResource}.
jaroslav@56
  1406
     *
jaroslav@56
  1407
     * <p> Before delegation, an absolute resource name is constructed from the
jaroslav@56
  1408
     * given resource name using this algorithm:
jaroslav@56
  1409
     *
jaroslav@56
  1410
     * <ul>
jaroslav@56
  1411
     *
jaroslav@56
  1412
     * <li> If the {@code name} begins with a {@code '/'}
jaroslav@56
  1413
     * (<tt>'&#92;u002f'</tt>), then the absolute name of the resource is the
jaroslav@56
  1414
     * portion of the {@code name} following the {@code '/'}.
jaroslav@56
  1415
     *
jaroslav@56
  1416
     * <li> Otherwise, the absolute name is of the following form:
jaroslav@56
  1417
     *
jaroslav@56
  1418
     * <blockquote>
jaroslav@56
  1419
     *   {@code modified_package_name/name}
jaroslav@56
  1420
     * </blockquote>
jaroslav@56
  1421
     *
jaroslav@56
  1422
     * <p> Where the {@code modified_package_name} is the package name of this
jaroslav@56
  1423
     * object with {@code '/'} substituted for {@code '.'}
jaroslav@56
  1424
     * (<tt>'&#92;u002e'</tt>).
jaroslav@56
  1425
     *
jaroslav@56
  1426
     * </ul>
jaroslav@56
  1427
     *
jaroslav@56
  1428
     * @param  name name of the desired resource
jaroslav@56
  1429
     * @return      A  {@link java.net.URL} object or {@code null} if no
jaroslav@56
  1430
     *              resource with this name is found
jaroslav@56
  1431
     * @since  JDK1.1
jaroslav@56
  1432
     */
jaroslav@122
  1433
    public java.net.URL getResource(String name) {
jaroslav@1375
  1434
        return newResourceURL(name, getResourceAsStream(name));
jaroslav@1375
  1435
    }
jaroslav@1375
  1436
jaroslav@1375
  1437
    static URL newResourceURL(String name, InputStream is) {
jaroslav@1375
  1438
        return is == null ? null : newResourceURL0(URL.class, "res:/" + name, is);
jaroslav@122
  1439
    }
jaroslav@576
  1440
    
jaroslav@576
  1441
    @JavaScriptBody(args = { "url", "spec", "is" }, body = 
jaroslav@576
  1442
        "var u = url.cnstr(true);\n"
jaroslav@576
  1443
      + "u.constructor.cons__VLjava_lang_String_2Ljava_io_InputStream_2.call(u, spec, is);\n"
jaroslav@576
  1444
      + "return u;"
jaroslav@576
  1445
    )
jaroslav@1375
  1446
    private static native URL newResourceURL0(Class<URL> url, String spec, InputStream is);
jaroslav@56
  1447
jaroslav@122
  1448
   /**
jaroslav@122
  1449
     * Add a package name prefix if the name is not absolute Remove leading "/"
jaroslav@122
  1450
     * if name is absolute
jaroslav@122
  1451
     */
jaroslav@122
  1452
    private String resolveName(String name) {
jaroslav@122
  1453
        if (name == null) {
jaroslav@122
  1454
            return name;
jaroslav@122
  1455
        }
jaroslav@122
  1456
        if (!name.startsWith("/")) {
jaroslav@122
  1457
            Class<?> c = this;
jaroslav@122
  1458
            while (c.isArray()) {
jaroslav@122
  1459
                c = c.getComponentType();
jaroslav@122
  1460
            }
jaroslav@122
  1461
            String baseName = c.getName();
jaroslav@122
  1462
            int index = baseName.lastIndexOf('.');
jaroslav@122
  1463
            if (index != -1) {
jaroslav@122
  1464
                name = baseName.substring(0, index).replace('.', '/')
jaroslav@122
  1465
                    +"/"+name;
jaroslav@122
  1466
            }
jaroslav@122
  1467
        } else {
jaroslav@122
  1468
            name = name.substring(1);
jaroslav@122
  1469
        }
jaroslav@122
  1470
        return name;
jaroslav@122
  1471
    }
jaroslav@122
  1472
    
jaroslav@122
  1473
    /**
jaroslav@122
  1474
     * Returns the class loader for the class.  Some implementations may use
jaroslav@122
  1475
     * null to represent the bootstrap class loader. This method will return
jaroslav@122
  1476
     * null in such implementations if this class was loaded by the bootstrap
jaroslav@122
  1477
     * class loader.
jaroslav@122
  1478
     *
jaroslav@122
  1479
     * <p> If a security manager is present, and the caller's class loader is
jaroslav@122
  1480
     * not null and the caller's class loader is not the same as or an ancestor of
jaroslav@122
  1481
     * the class loader for the class whose class loader is requested, then
jaroslav@122
  1482
     * this method calls the security manager's {@code checkPermission}
jaroslav@122
  1483
     * method with a {@code RuntimePermission("getClassLoader")}
jaroslav@122
  1484
     * permission to ensure it's ok to access the class loader for the class.
jaroslav@122
  1485
     *
jaroslav@122
  1486
     * <p>If this object
jaroslav@122
  1487
     * represents a primitive type or void, null is returned.
jaroslav@122
  1488
     *
jaroslav@122
  1489
     * @return  the class loader that loaded the class or interface
jaroslav@122
  1490
     *          represented by this object.
jaroslav@122
  1491
     * @throws SecurityException
jaroslav@122
  1492
     *    if a security manager exists and its
jaroslav@122
  1493
     *    {@code checkPermission} method denies
jaroslav@122
  1494
     *    access to the class loader for the class.
jaroslav@122
  1495
     * @see java.lang.ClassLoader
jaroslav@122
  1496
     * @see SecurityManager#checkPermission
jaroslav@122
  1497
     * @see java.lang.RuntimePermission
jaroslav@122
  1498
     */
jaroslav@122
  1499
    public ClassLoader getClassLoader() {
jaroslav@1333
  1500
        return ClassLoader.getSystemClassLoader();
jaroslav@122
  1501
    }
jaroslav@604
  1502
jaroslav@604
  1503
    /**
jaroslav@604
  1504
     * Determines the interfaces implemented by the class or interface
jaroslav@604
  1505
     * represented by this object.
jaroslav@604
  1506
     *
jaroslav@604
  1507
     * <p> If this object represents a class, the return value is an array
jaroslav@604
  1508
     * containing objects representing all interfaces implemented by the
jaroslav@604
  1509
     * class. The order of the interface objects in the array corresponds to
jaroslav@604
  1510
     * the order of the interface names in the {@code implements} clause
jaroslav@604
  1511
     * of the declaration of the class represented by this object. For
jaroslav@604
  1512
     * example, given the declaration:
jaroslav@604
  1513
     * <blockquote>
jaroslav@604
  1514
     * {@code class Shimmer implements FloorWax, DessertTopping { ... }}
jaroslav@604
  1515
     * </blockquote>
jaroslav@604
  1516
     * suppose the value of {@code s} is an instance of
jaroslav@604
  1517
     * {@code Shimmer}; the value of the expression:
jaroslav@604
  1518
     * <blockquote>
jaroslav@604
  1519
     * {@code s.getClass().getInterfaces()[0]}
jaroslav@604
  1520
     * </blockquote>
jaroslav@604
  1521
     * is the {@code Class} object that represents interface
jaroslav@604
  1522
     * {@code FloorWax}; and the value of:
jaroslav@604
  1523
     * <blockquote>
jaroslav@604
  1524
     * {@code s.getClass().getInterfaces()[1]}
jaroslav@604
  1525
     * </blockquote>
jaroslav@604
  1526
     * is the {@code Class} object that represents interface
jaroslav@604
  1527
     * {@code DessertTopping}.
jaroslav@604
  1528
     *
jaroslav@604
  1529
     * <p> If this object represents an interface, the array contains objects
jaroslav@604
  1530
     * representing all interfaces extended by the interface. The order of the
jaroslav@604
  1531
     * interface objects in the array corresponds to the order of the interface
jaroslav@604
  1532
     * names in the {@code extends} clause of the declaration of the
jaroslav@604
  1533
     * interface represented by this object.
jaroslav@604
  1534
     *
jaroslav@604
  1535
     * <p> If this object represents a class or interface that implements no
jaroslav@604
  1536
     * interfaces, the method returns an array of length 0.
jaroslav@604
  1537
     *
jaroslav@604
  1538
     * <p> If this object represents a primitive type or void, the method
jaroslav@604
  1539
     * returns an array of length 0.
jaroslav@604
  1540
     *
jaroslav@604
  1541
     * @return an array of interfaces implemented by this class.
jaroslav@604
  1542
     */
jaroslav@604
  1543
    public native Class<?>[] getInterfaces();
jaroslav@122
  1544
    
jaroslav@122
  1545
    /**
jaroslav@122
  1546
     * Returns the {@code Class} representing the component type of an
jaroslav@122
  1547
     * array.  If this class does not represent an array class this method
jaroslav@122
  1548
     * returns null.
jaroslav@122
  1549
     *
jaroslav@122
  1550
     * @return the {@code Class} representing the component type of this
jaroslav@122
  1551
     * class if this class is an array
jaroslav@122
  1552
     * @see     java.lang.reflect.Array
jaroslav@122
  1553
     * @since JDK1.1
jaroslav@122
  1554
     */
jaroslav@228
  1555
    public Class<?> getComponentType() {
jaroslav@451
  1556
        if (isArray()) {
jaroslav@451
  1557
            try {
jaroslav@1532
  1558
                Class<?> c = getComponentTypeByFnc();
jaroslav@1532
  1559
                return c != null ? c : getComponentType0();
jaroslav@451
  1560
            } catch (ClassNotFoundException cnfe) {
jaroslav@451
  1561
                throw new IllegalStateException(cnfe);
jaroslav@451
  1562
            }
jaroslav@451
  1563
        }
jaroslav@228
  1564
        return null;
jaroslav@228
  1565
    }
jaroslav@1532
  1566
    
jaroslav@1532
  1567
    @JavaScriptBody(args = {  }, body = 
jaroslav@1532
  1568
        "if (this.fnc) {\n"
jaroslav@1532
  1569
      + "  var c = this.fnc(false).constructor.$class;\n"
jaroslav@1532
  1570
//      + "  java.lang.System.out.println('will call: ' + (!!this.fnc) + ' res: ' + c.jvmName);\n"
jaroslav@1532
  1571
      + "  if (c) return c;\n"
jaroslav@1532
  1572
      + "}\n"
jaroslav@1532
  1573
      + "return null;"
jaroslav@1532
  1574
    )
jaroslav@1532
  1575
    private native Class<?> getComponentTypeByFnc();
jaroslav@56
  1576
jaroslav@451
  1577
    private Class<?> getComponentType0() throws ClassNotFoundException {
jaroslav@451
  1578
        String n = getName().substring(1);
jaroslav@451
  1579
        switch (n.charAt(0)) {
jaroslav@451
  1580
            case 'L': 
jaroslav@451
  1581
                n = n.substring(1, n.length() - 1);
jaroslav@451
  1582
                return Class.forName(n);
jaroslav@451
  1583
            case 'I':
jaroslav@451
  1584
                return Integer.TYPE;
jaroslav@451
  1585
            case 'J':
jaroslav@451
  1586
                return Long.TYPE;
jaroslav@451
  1587
            case 'D':
jaroslav@451
  1588
                return Double.TYPE;
jaroslav@451
  1589
            case 'F':
jaroslav@451
  1590
                return Float.TYPE;
jaroslav@451
  1591
            case 'B':
jaroslav@451
  1592
                return Byte.TYPE;
jaroslav@451
  1593
            case 'Z':
jaroslav@451
  1594
                return Boolean.TYPE;
jaroslav@451
  1595
            case 'S':
jaroslav@451
  1596
                return Short.TYPE;
jaroslav@451
  1597
            case 'V':
jaroslav@451
  1598
                return Void.TYPE;
jaroslav@451
  1599
            case 'C':
jaroslav@451
  1600
                return Character.TYPE;
jaroslav@451
  1601
            case '[':
jaroslav@1532
  1602
                return defineArray(n, null);
jaroslav@451
  1603
            default:
jaroslav@451
  1604
                throw new ClassNotFoundException("Unknown component type of " + getName());
jaroslav@451
  1605
        }
jaroslav@451
  1606
    }
jaroslav@451
  1607
    
jaroslav@1532
  1608
    @JavaScriptBody(args = { "sig", "fnc" }, body = 
jaroslav@933
  1609
        "if (!sig) sig = '[Ljava/lang/Object;';\n" +
jaroslav@450
  1610
        "var c = Array[sig];\n" +
jaroslav@1532
  1611
        "if (!c) {\n" +
jaroslav@1532
  1612
        "  c = vm.java_lang_Class(true);\n" +
jaroslav@1532
  1613
        "  c.jvmName = sig;\n" +
jaroslav@1532
  1614
        "  c.superclass = vm.java_lang_Object(false).$class;\n" +
jaroslav@1532
  1615
        "  c.array = true;\n" +
jaroslav@1532
  1616
        "  Array[sig] = c;\n" +
jaroslav@1532
  1617
        "}\n" +
jaroslav@1532
  1618
        "if (!c.fnc) c.fnc = fnc;\n" +
jaroslav@450
  1619
        "return c;"
jaroslav@450
  1620
    )
jaroslav@1532
  1621
    private static native Class<?> defineArray(String sig, Object fnc);
jaroslav@450
  1622
    
jaroslav@56
  1623
    /**
jaroslav@56
  1624
     * Returns true if and only if this class was declared as an enum in the
jaroslav@56
  1625
     * source code.
jaroslav@56
  1626
     *
jaroslav@56
  1627
     * @return true if and only if this class was declared as an enum in the
jaroslav@56
  1628
     *     source code
jaroslav@56
  1629
     * @since 1.5
jaroslav@56
  1630
     */
jaroslav@56
  1631
    public boolean isEnum() {
jaroslav@56
  1632
        // An enum must both directly extend java.lang.Enum and have
jaroslav@56
  1633
        // the ENUM bit set; classes for specialized enum constants
jaroslav@56
  1634
        // don't do the former.
jaroslav@56
  1635
        return (this.getModifiers() & ENUM) != 0 &&
jaroslav@1623
  1636
        this.getSuperclass() == java.lang.Enum.class;
jaroslav@56
  1637
    }
jaroslav@56
  1638
jaroslav@56
  1639
    /**
jaroslav@56
  1640
     * Casts an object to the class or interface represented
jaroslav@56
  1641
     * by this {@code Class} object.
jaroslav@56
  1642
     *
jaroslav@56
  1643
     * @param obj the object to be cast
jaroslav@56
  1644
     * @return the object after casting, or null if obj is null
jaroslav@56
  1645
     *
jaroslav@56
  1646
     * @throws ClassCastException if the object is not
jaroslav@56
  1647
     * null and is not assignable to the type T.
jaroslav@56
  1648
     *
jaroslav@56
  1649
     * @since 1.5
jaroslav@56
  1650
     */
jaroslav@56
  1651
    public T cast(Object obj) {
jaroslav@56
  1652
        if (obj != null && !isInstance(obj))
jaroslav@56
  1653
            throw new ClassCastException(cannotCastMsg(obj));
jaroslav@56
  1654
        return (T) obj;
jaroslav@56
  1655
    }
jaroslav@56
  1656
jaroslav@56
  1657
    private String cannotCastMsg(Object obj) {
jaroslav@56
  1658
        return "Cannot cast " + obj.getClass().getName() + " to " + getName();
jaroslav@56
  1659
    }
jaroslav@56
  1660
jaroslav@56
  1661
    /**
jaroslav@56
  1662
     * Casts this {@code Class} object to represent a subclass of the class
jaroslav@56
  1663
     * represented by the specified class object.  Checks that that the cast
jaroslav@56
  1664
     * is valid, and throws a {@code ClassCastException} if it is not.  If
jaroslav@56
  1665
     * this method succeeds, it always returns a reference to this class object.
jaroslav@56
  1666
     *
jaroslav@56
  1667
     * <p>This method is useful when a client needs to "narrow" the type of
jaroslav@56
  1668
     * a {@code Class} object to pass it to an API that restricts the
jaroslav@56
  1669
     * {@code Class} objects that it is willing to accept.  A cast would
jaroslav@56
  1670
     * generate a compile-time warning, as the correctness of the cast
jaroslav@56
  1671
     * could not be checked at runtime (because generic types are implemented
jaroslav@56
  1672
     * by erasure).
jaroslav@56
  1673
     *
jaroslav@56
  1674
     * @return this {@code Class} object, cast to represent a subclass of
jaroslav@56
  1675
     *    the specified class object.
jaroslav@56
  1676
     * @throws ClassCastException if this {@code Class} object does not
jaroslav@56
  1677
     *    represent a subclass of the specified class (here "subclass" includes
jaroslav@56
  1678
     *    the class itself).
jaroslav@56
  1679
     * @since 1.5
jaroslav@56
  1680
     */
jaroslav@56
  1681
    public <U> Class<? extends U> asSubclass(Class<U> clazz) {
jaroslav@56
  1682
        if (clazz.isAssignableFrom(this))
jaroslav@56
  1683
            return (Class<? extends U>) this;
jaroslav@56
  1684
        else
jaroslav@56
  1685
            throw new ClassCastException(this.toString());
jaroslav@56
  1686
    }
jaroslav@56
  1687
jaroslav@443
  1688
    @JavaScriptBody(args = { "ac" }, 
jaroslav@235
  1689
        body = 
jaroslav@1370
  1690
          "if (this.anno) {\n"
jaroslav@1370
  1691
        + "  var r = this.anno['L' + ac.jvmName + ';'];\n"
jaroslav@1370
  1692
        + "  if (typeof r === 'undefined') r = null;\n"
jaroslav@1370
  1693
        + "  return r;\n"
jaroslav@1370
  1694
        + "} else return null;\n"
jaroslav@235
  1695
    )
jaroslav@235
  1696
    private Object getAnnotationData(Class<?> annotationClass) {
jaroslav@235
  1697
        throw new UnsupportedOperationException();
jaroslav@235
  1698
    }
jaroslav@237
  1699
    /**
jaroslav@237
  1700
     * @throws NullPointerException {@inheritDoc}
jaroslav@237
  1701
     * @since 1.5
jaroslav@237
  1702
     */
jaroslav@56
  1703
    public <A extends Annotation> A getAnnotation(Class<A> annotationClass) {
jaroslav@235
  1704
        Object data = getAnnotationData(annotationClass);
jaroslav@235
  1705
        return data == null ? null : AnnotationImpl.create(annotationClass, data);
jaroslav@56
  1706
    }
jaroslav@56
  1707
jaroslav@56
  1708
    /**
jaroslav@56
  1709
     * @throws NullPointerException {@inheritDoc}
jaroslav@56
  1710
     * @since 1.5
jaroslav@56
  1711
     */
jaroslav@443
  1712
    @JavaScriptBody(args = { "ac" }, 
jaroslav@443
  1713
        body = "if (this.anno && this.anno['L' + ac.jvmName + ';']) { return true; }"
jaroslav@235
  1714
        + "else return false;"
jaroslav@235
  1715
    )
jaroslav@56
  1716
    public boolean isAnnotationPresent(
jaroslav@56
  1717
        Class<? extends Annotation> annotationClass) {
jaroslav@56
  1718
        if (annotationClass == null)
jaroslav@56
  1719
            throw new NullPointerException();
jaroslav@56
  1720
jaroslav@56
  1721
        return getAnnotation(annotationClass) != null;
jaroslav@56
  1722
    }
jaroslav@56
  1723
jaroslav@443
  1724
    @JavaScriptBody(args = {}, body = "return this.anno;")
jaroslav@238
  1725
    private Object getAnnotationData() {
jaroslav@238
  1726
        throw new UnsupportedOperationException();
jaroslav@238
  1727
    }
jaroslav@56
  1728
jaroslav@56
  1729
    /**
jaroslav@56
  1730
     * @since 1.5
jaroslav@56
  1731
     */
jaroslav@56
  1732
    public Annotation[] getAnnotations() {
jaroslav@238
  1733
        Object data = getAnnotationData();
jaroslav@238
  1734
        return data == null ? new Annotation[0] : AnnotationImpl.create(data);
jaroslav@56
  1735
    }
jaroslav@56
  1736
jaroslav@56
  1737
    /**
jaroslav@56
  1738
     * @since 1.5
jaroslav@56
  1739
     */
jaroslav@56
  1740
    public Annotation[] getDeclaredAnnotations()  {
jaroslav@65
  1741
        throw new UnsupportedOperationException();
jaroslav@56
  1742
    }
jaroslav@56
  1743
jaroslav@353
  1744
    @JavaScriptBody(args = "type", body = ""
jaroslav@353
  1745
        + "var c = vm.java_lang_Class(true);"
jaroslav@353
  1746
        + "c.jvmName = type;"
jaroslav@354
  1747
        + "c.primitive = true;"
jaroslav@353
  1748
        + "return c;"
jaroslav@353
  1749
    )
jaroslav@353
  1750
    native static Class getPrimitiveClass(String type);
jaroslav@88
  1751
jaroslav@517
  1752
    @JavaScriptBody(args = {}, body = 
jaroslav@1586
  1753
        "return this['desiredAssertionStatus'] ? this['desiredAssertionStatus'] : false;"
jaroslav@517
  1754
    )
jaroslav@517
  1755
    public native boolean desiredAssertionStatus();
jaroslav@1607
  1756
jaroslav@1607
  1757
    public boolean equals(Object obj) {
jaroslav@1607
  1758
        if (isPrimitive() && obj instanceof Class) {
jaroslav@1607
  1759
            Class c = ((Class)obj);
jaroslav@1607
  1760
            return c.isPrimitive() && getName().equals(c.getName());
jaroslav@1607
  1761
        }
jaroslav@1607
  1762
        return super.equals(obj);
jaroslav@1607
  1763
    }
jtulach@1483
  1764
    
jtulach@1483
  1765
    static void registerNatives() {
jtulach@1483
  1766
        boolean assertsOn = false;
jtulach@1484
  1767
        //       assert assertsOn = true;
jtulach@1483
  1768
        if (assertsOn) {
jtulach@1483
  1769
            try {
jtulach@1483
  1770
                Array.get(null, 0);
jtulach@1483
  1771
            } catch (Throwable ex) {
jtulach@1483
  1772
                // ignore
jtulach@1483
  1773
            }
jtulach@1483
  1774
        }
jtulach@1483
  1775
    }
jtulach@1483
  1776
jtulach@1483
  1777
    @JavaScriptBody(args = {}, body = "var p = vm.java_lang_Object(false);"
jtulach@1483
  1778
            + "p.toString = function() { return this.toString__Ljava_lang_String_2(); };"
jtulach@1483
  1779
    )
jtulach@1483
  1780
    static native void registerToString();
jtulach@1483
  1781
    
jtulach@1483
  1782
    @JavaScriptBody(args = {"self"}, body
jtulach@1483
  1783
            = "var c = self.constructor.$class;\n"
jtulach@1483
  1784
            + "return c ? c : null;\n"
jtulach@1483
  1785
    )
jtulach@1483
  1786
    static native Class<?> classFor(Object self);
jtulach@1483
  1787
    
jaroslav@1586
  1788
    @Exported
jtulach@1483
  1789
    @JavaScriptBody(args = { "self" }, body
jaroslav@1586
  1790
            = "if (self['$hashCode']) return self['$hashCode'];\n"
jaroslav@1586
  1791
            + "var h = self['computeHashCode__I'] ? self['computeHashCode__I']() : Math.random() * Math.pow(2, 31);\n"
jaroslav@1586
  1792
            + "return self['$hashCode'] = h & h;"
jtulach@1483
  1793
    )
jtulach@1483
  1794
    static native int defaultHashCode(Object self);
jtulach@1483
  1795
jtulach@1483
  1796
    @JavaScriptBody(args = "self", body
jaroslav@1513
  1797
            = "\nif (!self['$instOf_java_lang_Cloneable']) {"
jtulach@1483
  1798
            + "\n  return null;"
jtulach@1483
  1799
            + "\n} else {"
jtulach@1483
  1800
            + "\n  var clone = self.constructor(true);"
jtulach@1483
  1801
            + "\n  var props = Object.getOwnPropertyNames(self);"
jtulach@1483
  1802
            + "\n  for (var i = 0; i < props.length; i++) {"
jtulach@1483
  1803
            + "\n    var p = props[i];"
jtulach@1483
  1804
            + "\n    clone[p] = self[p];"
jtulach@1483
  1805
            + "\n  };"
jtulach@1483
  1806
            + "\n  return clone;"
jtulach@1483
  1807
            + "\n}"
jtulach@1483
  1808
    )
jtulach@1483
  1809
    static native Object clone(Object self) throws CloneNotSupportedException;
jaroslav@1515
  1810
jaroslav@1515
  1811
    @JavaScriptOnly(name = "toJS", value = "function(v) {\n"
jaroslav@1515
  1812
        + "  if (v === null) return null;\n"
jaroslav@1515
  1813
        + "  if (Object.prototype.toString.call(v) === '[object Array]') {\n"
jaroslav@1515
  1814
        + "    return vm.org_apidesign_bck2brwsr_emul_lang_System(false).convArray__Ljava_lang_Object_2Ljava_lang_Object_2(v);\n"
jaroslav@1515
  1815
        + "  }\n"
jaroslav@1515
  1816
        + "  return v.valueOf();\n"
jaroslav@1515
  1817
        + "}\n"
jaroslav@1515
  1818
    )
jaroslav@1515
  1819
    static native int toJS();
jaroslav@1515
  1820
jaroslav@1586
  1821
    @Exported
jaroslav@1515
  1822
    @JavaScriptOnly(name = "activate__Ljava_io_Closeable_2Lorg_apidesign_html_boot_spi_Fn$Presenter_2", value = "function() {\n"
jaroslav@1515
  1823
        + "  return vm.org_apidesign_bck2brwsr_emul_lang_System(false).activate__Ljava_io_Closeable_2();"
jaroslav@1515
  1824
        + "}\n"
jaroslav@1515
  1825
    )
jaroslav@1515
  1826
    static native int activate();
jaroslav@1522
  1827
    
jaroslav@1522
  1828
    private static Object bck2BrwsrCnvrt(Object o) {
jaroslav@1522
  1829
        if (o instanceof Throwable) {
jaroslav@1522
  1830
            return o;
jaroslav@1522
  1831
        }
jaroslav@1522
  1832
        final String msg = msg(o);
jaroslav@1522
  1833
        if (msg == null || msg.startsWith("TypeError")) {
jaroslav@1522
  1834
            return new NullPointerException(msg);
jaroslav@1522
  1835
        }
jaroslav@1522
  1836
        return new Throwable(msg);
jaroslav@1522
  1837
    }
jaroslav@1522
  1838
jaroslav@1522
  1839
    @JavaScriptBody(args = {"o"}, body = "return o ? o.toString() : null;")
jaroslav@1522
  1840
    private static native String msg(Object o);
jaroslav@1522
  1841
jaroslav@1586
  1842
    @Exported
jaroslav@1522
  1843
    @JavaScriptOnly(name = "bck2BrwsrThrwrbl", value = "c.bck2BrwsrCnvrt__Ljava_lang_Object_2Ljava_lang_Object_2")
jaroslav@1522
  1844
    private static void bck2BrwsrCnvrtVM() {
jaroslav@1522
  1845
    }
jaroslav@1522
  1846
    
jaroslav@56
  1847
}