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