jdk/src/share/classes/java/lang/reflect/Method.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 2174 0ffce164e4a4
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1996-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang.reflect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import sun.reflect.MethodAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import sun.reflect.Reflection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import sun.reflect.generics.repository.MethodRepository;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.reflect.generics.factory.CoreReflectionFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.reflect.generics.factory.GenericsFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.reflect.generics.scope.MethodScope;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.reflect.annotation.AnnotationType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import sun.reflect.annotation.AnnotationParser;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.lang.annotation.Annotation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.lang.annotation.AnnotationFormatError;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.nio.ByteBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * A {@code Method} provides information about, and access to, a single method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * on a class or interface.  The reflected method may be a class method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * or an instance method (including an abstract method).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <p>A {@code Method} permits widening conversions to occur when matching the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * actual parameters to invoke with the underlying method's formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * parameters, but it throws an {@code IllegalArgumentException} if a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * narrowing conversion would occur.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @see Member
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @see java.lang.Class
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * @see java.lang.Class#getMethods()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @see java.lang.Class#getMethod(String, Class[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @see java.lang.Class#getDeclaredMethods()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @see java.lang.Class#getDeclaredMethod(String, Class[])
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * @author Kenneth Russell
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * @author Nakul Saraiya
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
public final
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    class Method extends AccessibleObject implements GenericDeclaration,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                                                     Member {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    private Class               clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    private int                 slot;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    // This is guaranteed to be interned by the VM in the 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    // reflection implementation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    private String              name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private Class               returnType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private Class[]             parameterTypes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    private Class[]             exceptionTypes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    private int                 modifiers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    // Generics and annotations support
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private transient String              signature;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    // generic info repository; lazily initialized
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private transient MethodRepository genericInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    private byte[]              annotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private byte[]              parameterAnnotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    private byte[]              annotationDefault;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private volatile MethodAccessor methodAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    // For sharing of MethodAccessors. This branching structure is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    // currently only two levels deep (i.e., one root Method and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    // potentially many Method objects pointing to it.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    private Method              root;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    // More complicated security check cache needed here than for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    // Class.newInstance() and Constructor.newInstance()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private Class securityCheckCache;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private Class securityCheckTargetClassCache;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    // Modifiers that can be applied to a method in source code
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private static final int LANGUAGE_MODIFIERS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        Modifier.PUBLIC         | Modifier.PROTECTED    | Modifier.PRIVATE |
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        Modifier.ABSTRACT       | Modifier.STATIC       | Modifier.FINAL   |
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        Modifier.SYNCHRONIZED   | Modifier.NATIVE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
   // Generics infrastructure
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    private String getGenericSignature() {return signature;}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    // Accessor for factory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    private GenericsFactory getFactory() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        // create scope and factory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        return CoreReflectionFactory.make(this, MethodScope.make(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    // Accessor for generic info repository
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private MethodRepository getGenericInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        // lazily initialize repository if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        if (genericInfo == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            // create and cache generic info repository
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            genericInfo = MethodRepository.make(getGenericSignature(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                                                getFactory());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        return genericInfo; //return cached repository
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * Package-private constructor used by ReflectAccess to enable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * instantiation of these objects in Java code from the java.lang
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * package via sun.reflect.LangReflectAccess.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    Method(Class declaringClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
           String name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
           Class[] parameterTypes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
           Class returnType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
           Class[] checkedExceptions,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
           int modifiers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
           int slot,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
           String signature,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
           byte[] annotations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
           byte[] parameterAnnotations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
           byte[] annotationDefault)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        this.clazz = declaringClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        this.name = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        this.parameterTypes = parameterTypes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        this.returnType = returnType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        this.exceptionTypes = checkedExceptions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        this.modifiers = modifiers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        this.slot = slot;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        this.signature = signature;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        this.annotations = annotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        this.parameterAnnotations = parameterAnnotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        this.annotationDefault = annotationDefault;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * Package-private routine (exposed to java.lang.Class via
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * ReflectAccess) which returns a copy of this Method. The copy's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * "root" field points to this Method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    Method copy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // This routine enables sharing of MethodAccessor objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        // among Method objects which refer to the same underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        // method in the VM. (All of this contortion is only necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        // because of the "accessibility" bit in AccessibleObject,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        // which implicitly requires that new java.lang.reflect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        // objects be fabricated for each reflective call on Class
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        // objects.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        Method res = new Method(clazz, name, parameterTypes, returnType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                                exceptionTypes, modifiers, slot, signature,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                                annotations, parameterAnnotations, annotationDefault);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        res.root = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        // Might as well eagerly propagate this if already present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        res.methodAccessor = methodAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Returns the {@code Class} object representing the class or interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * that declares the method represented by this {@code Method} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    public Class<?> getDeclaringClass() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        return clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * Returns the name of the method represented by this {@code Method}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * object, as a {@code String}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * Returns the Java language modifiers for the method represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * by this {@code Method} object, as an integer. The {@code Modifier} class should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * be used to decode the modifiers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @see Modifier
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public int getModifiers() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        return modifiers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * Returns an array of {@code TypeVariable} objects that represent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * type variables declared by the generic declaration represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * {@code GenericDeclaration} object, in declaration order.  Returns an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * array of length 0 if the underlying generic declaration declares no type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * variables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @return an array of {@code TypeVariable} objects that represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     *     the type variables declared by this generic declaration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @throws GenericSignatureFormatError if the generic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     *     signature of this generic declaration does not conform to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *     the format specified in the Java Virtual Machine Specification,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *     3rd edition
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    public TypeVariable<Method>[] getTypeParameters() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        if (getGenericSignature() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            return (TypeVariable<Method>[])getGenericInfo().getTypeParameters();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            return (TypeVariable<Method>[])new TypeVariable[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * Returns a {@code Class} object that represents the formal return type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * of the method represented by this {@code Method} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * @return the return type for the method this object represents
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    public Class<?> getReturnType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        return returnType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Returns a {@code Type} object that represents the formal return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * type of the method represented by this {@code Method} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * <p>If the return type is a parameterized type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * the {@code Type} object returned must accurately reflect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * the actual type parameters used in the source code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * <p>If the return type is a type variable or a parameterized type, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * is created. Otherwise, it is resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * @return  a {@code Type} object that represents the formal return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     *     type of the underlying  method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * @throws GenericSignatureFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *     if the generic method signature does not conform to the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *     specified in the Java Virtual Machine Specification, 3rd edition
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * @throws TypeNotPresentException if the underlying method's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     *     return type refers to a non-existent type declaration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * @throws MalformedParameterizedTypeException if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *     underlying method's return typed refers to a parameterized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *     type that cannot be instantiated for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    public Type getGenericReturnType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
      if (getGenericSignature() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        return getGenericInfo().getReturnType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
      } else { return getReturnType();}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * Returns an array of {@code Class} objects that represent the formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * parameter types, in declaration order, of the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * represented by this {@code Method} object.  Returns an array of length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * 0 if the underlying method takes no parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * @return the parameter types for the method this object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * represents
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    public Class<?>[] getParameterTypes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        return (Class<?>[]) parameterTypes.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Returns an array of {@code Type} objects that represent the formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * parameter types, in declaration order, of the method represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * this {@code Method} object. Returns an array of length 0 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * underlying method takes no parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * <p>If a formal parameter type is a parameterized type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * the {@code Type} object returned for it must accurately reflect
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * the actual type parameters used in the source code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * <p>If a formal parameter type is a type variable or a parameterized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * type, it is created. Otherwise, it is resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @return an array of Types that represent the formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *     parameter types of the underlying method, in declaration order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     * @throws GenericSignatureFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     *     if the generic method signature does not conform to the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *     specified in the Java Virtual Machine Specification, 3rd edition
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @throws TypeNotPresentException if any of the parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     *     types of the underlying method refers to a non-existent type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     *     declaration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * @throws MalformedParameterizedTypeException if any of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     *     the underlying method's parameter types refer to a parameterized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *     type that cannot be instantiated for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    public Type[] getGenericParameterTypes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        if (getGenericSignature() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            return getGenericInfo().getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            return getParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * Returns an array of {@code Class} objects that represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * the types of the exceptions declared to be thrown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * by the underlying method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * represented by this {@code Method} object.  Returns an array of length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * 0 if the method declares no exceptions in its {@code throws} clause.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @return the exception types declared as being thrown by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * method this object represents
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    public Class<?>[] getExceptionTypes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        return (Class<?>[]) exceptionTypes.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * Returns an array of {@code Type} objects that represent the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * exceptions declared to be thrown by this {@code Method} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * Returns an array of length 0 if the underlying method declares
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * no exceptions in its {@code throws} clause.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * <p>If an exception type is a parameterized type, the {@code Type}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * object returned for it must accurately reflect the actual type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * parameters used in the source code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * <p>If an exception type is a type variable or a parameterized
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * type, it is created. Otherwise, it is resolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return an array of Types that represent the exception types
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     *     thrown by the underlying method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * @throws GenericSignatureFormatError
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *     if the generic method signature does not conform to the format
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     *     specified in the Java Virtual Machine Specification, 3rd edition
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @throws TypeNotPresentException if the underlying method's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     *     {@code throws} clause refers to a non-existent type declaration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * @throws MalformedParameterizedTypeException if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     *     the underlying method's {@code throws} clause refers to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *     parameterized type that cannot be instantiated for any reason
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
      public Type[] getGenericExceptionTypes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
          Type[] result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
          if (getGenericSignature() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
              ((result = getGenericInfo().getExceptionTypes()).length > 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
              return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
          else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
              return getExceptionTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * Compares this {@code Method} against the specified object.  Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * true if the objects are the same.  Two {@code Methods} are the same if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * they were declared by the same class and have the same name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * and formal parameter types and return type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        if (obj != null && obj instanceof Method) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            Method other = (Method)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
            if ((getDeclaringClass() == other.getDeclaringClass())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                && (getName() == other.getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                if (!returnType.equals(other.getReturnType()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                    return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                /* Avoid unnecessary cloning */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                Class[] params1 = parameterTypes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                Class[] params2 = other.parameterTypes;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                if (params1.length == params2.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                    for (int i = 0; i < params1.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                        if (params1[i] != params2[i])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     * Returns a hashcode for this {@code Method}.  The hashcode is computed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
     * as the exclusive-or of the hashcodes for the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * method's declaring class name and the method's name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        return getDeclaringClass().getName().hashCode() ^ getName().hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * Returns a string describing this {@code Method}.  The string is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * formatted as the method access modifiers, if any, followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * the method return type, followed by a space, followed by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * class declaring the method, followed by a period, followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * the method name, followed by a parenthesized, comma-separated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * list of the method's formal parameter types. If the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * throws checked exceptions, the parameter list is followed by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * space, followed by the word throws followed by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * comma-separated list of the thrown exception types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * For example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     *    public boolean java.lang.Object.equals(java.lang.Object)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * <p>The access modifiers are placed in canonical order as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * specified by "The Java Language Specification".  This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * {@code public}, {@code protected} or {@code private} first,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * and then other modifiers in the following order:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * {@code abstract}, {@code static}, {@code final},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * {@code synchronized}, {@code native}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            StringBuffer sb = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
            int mod = getModifiers() & LANGUAGE_MODIFIERS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            if (mod != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                sb.append(Modifier.toString(mod) + " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            sb.append(Field.getTypeName(getReturnType()) + " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
            sb.append(Field.getTypeName(getDeclaringClass()) + ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
            sb.append(getName() + "(");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
            Class[] params = parameterTypes; // avoid clone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            for (int j = 0; j < params.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                sb.append(Field.getTypeName(params[j]));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                if (j < (params.length - 1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
                    sb.append(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
            sb.append(")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            Class[] exceptions = exceptionTypes; // avoid clone
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
            if (exceptions.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                sb.append(" throws ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                for (int k = 0; k < exceptions.length; k++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
                    sb.append(exceptions[k].getName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
                    if (k < (exceptions.length - 1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                        sb.append(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
            return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            return "<" + e + ">";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * Returns a string describing this {@code Method}, including
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * type parameters.  The string is formatted as the method access
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * modifiers, if any, followed by an angle-bracketed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * comma-separated list of the method's type parameters, if any,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * followed by the method's generic return type, followed by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * space, followed by the class declaring the method, followed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * a period, followed by the method name, followed by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * parenthesized, comma-separated list of the method's generic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * formal parameter types.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * If this method was declared to take a variable number of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * arguments, instead of denoting the last parameter as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     * "<tt><i>Type</i>[]</tt>", it is denoted as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * "<tt><i>Type</i>...</tt>".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * A space is used to separate access modifiers from one another
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * and from the type parameters or return type.  If there are no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * type parameters, the type parameter list is elided; if the type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * parameter list is present, a space separates the list from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     * class name.  If the method is declared to throw exceptions, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * parameter list is followed by a space, followed by the word
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * throws followed by a comma-separated list of the generic thrown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     * exception types.  If there are no type parameters, the type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * parameter list is elided.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * <p>The access modifiers are placed in canonical order as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * specified by "The Java Language Specification".  This is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * {@code public}, {@code protected} or {@code private} first,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * and then other modifiers in the following order:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * {@code abstract}, {@code static}, {@code final},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * {@code synchronized} {@code native}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @return a string describing this {@code Method},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * include type parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    public String toGenericString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
            StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            int mod = getModifiers() & LANGUAGE_MODIFIERS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
            if (mod != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
                sb.append(Modifier.toString(mod) + " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            TypeVariable<?>[] typeparms = getTypeParameters();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
            if (typeparms.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
                boolean first = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
                sb.append("<");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
                for(TypeVariable<?> typeparm: typeparms) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
                    if (!first)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
                        sb.append(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
                    // Class objects can't occur here; no need to test
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
                    // and call Class.getName().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
                    sb.append(typeparm.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
                    first = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
                sb.append("> ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            Type genRetType = getGenericReturnType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            sb.append( ((genRetType instanceof Class<?>)?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                        Field.getTypeName((Class<?>)genRetType):genRetType.toString())  + " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
            sb.append(Field.getTypeName(getDeclaringClass()) + ".");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            sb.append(getName() + "(");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            Type[] params = getGenericParameterTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            for (int j = 0; j < params.length; j++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                String param = (params[j] instanceof Class)?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                    Field.getTypeName((Class)params[j]):
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                    (params[j].toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                if (isVarArgs() && (j == params.length - 1)) // replace T[] with T...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                    param = param.replaceFirst("\\[\\]$", "...");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                sb.append(param);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                if (j < (params.length - 1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                    sb.append(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            sb.append(")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            Type[] exceptions = getGenericExceptionTypes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            if (exceptions.length > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                sb.append(" throws ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                for (int k = 0; k < exceptions.length; k++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                    sb.append((exceptions[k] instanceof Class)?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                              ((Class)exceptions[k]).getName():
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
                              exceptions[k].toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
                    if (k < (exceptions.length - 1))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
                        sb.append(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            return "<" + e + ">";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     * Invokes the underlying method represented by this {@code Method}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * object, on the specified object with the specified parameters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * Individual parameters are automatically unwrapped to match
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * primitive formal parameters, and both primitive and reference
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * parameters are subject to method invocation conversions as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * <p>If the underlying method is static, then the specified {@code obj}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * argument is ignored. It may be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * <p>If the number of formal parameters required by the underlying method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * 0, the supplied {@code args} array may be of length 0 or null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * <p>If the underlying method is an instance method, it is invoked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * using dynamic method lookup as documented in The Java Language
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * Specification, Second Edition, section 15.12.4.4; in particular,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * overriding based on the runtime type of the target object will occur.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * <p>If the underlying method is static, the class that declared
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * the method is initialized if it has not already been initialized.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * <p>If the method completes normally, the value it returns is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * returned to the caller of invoke; if the value has a primitive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * type, it is first appropriately wrapped in an object. However,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * if the value has the type of an array of a primitive type, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * elements of the array are <i>not</i> wrapped in objects; in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * other words, an array of primitive type is returned.  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * underlying method return type is void, the invocation returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * @param obj  the object the underlying method is invoked from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     * @param args the arguments used for the method call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * @return the result of dispatching the method represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * this object on {@code obj} with parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * {@code args}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * @exception IllegalAccessException    if this {@code Method} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     *              enforces Java language access control and the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     *              method is inaccessible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * @exception IllegalArgumentException  if the method is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *              instance method and the specified object argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     *              is not an instance of the class or interface
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     *              declaring the underlying method (or of a subclass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     *              or implementor thereof); if the number of actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     *              and formal parameters differ; if an unwrapping
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     *              conversion for primitive arguments fails; or if,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     *              after possible unwrapping, a parameter value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *              cannot be converted to the corresponding formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     *              parameter type by a method invocation conversion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * @exception InvocationTargetException if the underlying method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *              throws an exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * @exception NullPointerException      if the specified object is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     *              and the method is an instance method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * @exception ExceptionInInitializerError if the initialization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * provoked by this method fails.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
    public Object invoke(Object obj, Object... args)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        throws IllegalAccessException, IllegalArgumentException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
           InvocationTargetException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        if (!override) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            if (!Reflection.quickCheckMemberAccess(clazz, modifiers)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                Class caller = Reflection.getCallerClass(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                Class targetClass = ((obj == null || !Modifier.isProtected(modifiers))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                                     ? clazz
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                                     : obj.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                boolean cached;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                    cached = (securityCheckCache == caller)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                            && (securityCheckTargetClassCache == targetClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                if (!cached) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                    Reflection.ensureMemberAccess(caller, clazz, obj, modifiers);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                    synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                        securityCheckCache = caller;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                        securityCheckTargetClassCache = targetClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
        if (methodAccessor == null) acquireMethodAccessor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        return methodAccessor.invoke(obj, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * Returns {@code true} if this method is a bridge
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     * method; returns {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * @return true if and only if this method is a bridge
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * method as defined by the Java Language Specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
    public boolean isBridge() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
        return (getModifiers() & Modifier.BRIDGE) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * Returns {@code true} if this method was declared to take
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     * a variable number of arguments; returns {@code false}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     * otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * @return {@code true} if an only if this method was declared to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * take a variable number of arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    public boolean isVarArgs() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
        return (getModifiers() & Modifier.VARARGS) != 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * Returns {@code true} if this method is a synthetic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     * method; returns {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
     * @return true if and only if this method is a synthetic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * method as defined by the Java Language Specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    public boolean isSynthetic() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        return Modifier.isSynthetic(getModifiers());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
    // NOTE that there is no synchronization used here. It is correct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    // (though not efficient) to generate more than one MethodAccessor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    // for a given Method. However, avoiding synchronization will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    // probably make the implementation more scalable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    private void acquireMethodAccessor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        // First check to see if one has been created yet, and take it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        // if so
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        MethodAccessor tmp = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        if (root != null) tmp = root.getMethodAccessor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        if (tmp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
            methodAccessor = tmp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        // Otherwise fabricate one and propagate it up to the root
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        tmp = reflectionFactory.newMethodAccessor(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        setMethodAccessor(tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    // Returns MethodAccessor for this Method object, not looking up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    // the chain to the root
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    MethodAccessor getMethodAccessor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        return methodAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    // Sets the MethodAccessor for this Method object and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    // (recursively) its root
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    void setMethodAccessor(MethodAccessor accessor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        methodAccessor = accessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        // Propagate up
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        if (root != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
            root.setMethodAccessor(accessor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * @throws NullPointerException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        if (annotationClass == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        return (T) declaredAnnotations().get(annotationClass);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    private static final Annotation[] EMPTY_ANNOTATION_ARRAY=new Annotation[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    public Annotation[] getDeclaredAnnotations()  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        return declaredAnnotations().values().toArray(EMPTY_ANNOTATION_ARRAY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    private transient Map<Class, Annotation> declaredAnnotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    private synchronized  Map<Class, Annotation> declaredAnnotations() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        if (declaredAnnotations == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
            declaredAnnotations = AnnotationParser.parseAnnotations(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
                annotations, sun.misc.SharedSecrets.getJavaLangAccess().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
                getConstantPool(getDeclaringClass()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                getDeclaringClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
        return declaredAnnotations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
     * Returns the default value for the annotation member represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
     * this {@code Method} instance.  If the member is of a primitive type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * an instance of the corresponding wrapper type is returned. Returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * null if no default is associated with the member, or if the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * instance does not represent a declared member of an annotation type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * @return the default value for the annotation member represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
     *     by this {@code Method} instance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     * @throws TypeNotPresentException if the annotation is of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     *     {@link Class} and no definition can be found for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     *     default class value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    public Object getDefaultValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        if  (annotationDefault == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        Class memberType = AnnotationType.invocationHandlerReturnType(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            getReturnType());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        Object result = AnnotationParser.parseMemberValue(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            memberType, ByteBuffer.wrap(annotationDefault),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            sun.misc.SharedSecrets.getJavaLangAccess().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
                getConstantPool(getDeclaringClass()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            getDeclaringClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        if (result instanceof sun.reflect.annotation.ExceptionProxy)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
            throw new AnnotationFormatError("Invalid default: " + this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * Returns an array of arrays that represent the annotations on the formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     * parameters, in declaration order, of the method represented by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
     * this {@code Method} object. (Returns an array of length zero if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * underlying method is parameterless.  If the method has one or more
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
     * parameters, a nested array of length zero is returned for each parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     * with no annotations.) The annotation objects contained in the returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * arrays are serializable.  The caller of this method is free to modify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * the returned arrays; it will have no effect on the arrays returned to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * other callers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * @return an array of arrays that represent the annotations on the formal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     *    parameters, in declaration order, of the method represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
     *    Method object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    public Annotation[][] getParameterAnnotations() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        int numParameters = parameterTypes.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        if (parameterAnnotations == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
            return new Annotation[numParameters][0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        Annotation[][] result = AnnotationParser.parseParameterAnnotations(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
            parameterAnnotations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
            sun.misc.SharedSecrets.getJavaLangAccess().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
                getConstantPool(getDeclaringClass()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
            getDeclaringClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        if (result.length != numParameters)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
            throw new java.lang.annotation.AnnotationFormatError(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
                "Parameter annotations don't match number of parameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
}