jdk/src/share/classes/sun/reflect/LangReflectAccess.java
author jfranck
Tue, 29 Jan 2013 10:32:49 +0100
changeset 15510 898d924a7efd
parent 5506 202f599c92aa
permissions -rw-r--r--
8004698: Implement Core Reflection for Type Annotations Reviewed-by: darcy
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 5506
diff changeset
     2
 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
2
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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3959
diff changeset
    23
 * questions.
2
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 sun.reflect;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
/** An interface which gives privileged packages Java-level access to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
    internals of java.lang.reflect. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public interface LangReflectAccess {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
    /** Creates a new java.lang.reflect.Field. Access checks as per
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
        java.lang.reflect.AccessibleObject are not overridden. */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    36
    public Field newField(Class<?> declaringClass,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
                          String name,
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    38
                          Class<?> type,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
                          int modifiers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
                          int slot,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
                          String signature,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
                          byte[] annotations);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /** Creates a new java.lang.reflect.Method. Access checks as per
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
      java.lang.reflect.AccessibleObject are not overridden. */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    46
    public Method newMethod(Class<?> declaringClass,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
                            String name,
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    48
                            Class<?>[] parameterTypes,
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    49
                            Class<?> returnType,
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    50
                            Class<?>[] checkedExceptions,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                            int modifiers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
                            int slot,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                            String signature,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                            byte[] annotations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                            byte[] parameterAnnotations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                            byte[] annotationDefault);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /** Creates a new java.lang.reflect.Constructor. Access checks as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
      per java.lang.reflect.AccessibleObject are not overridden. */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    public <T> Constructor<T> newConstructor(Class<T> declaringClass,
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    61
                                             Class<?>[] parameterTypes,
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    62
                                             Class<?>[] checkedExceptions,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                                             int modifiers,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                                             int slot,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                                             String signature,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                                             byte[] annotations,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                                             byte[] parameterAnnotations);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    /** Gets the MethodAccessor object for a java.lang.reflect.Method */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    public MethodAccessor getMethodAccessor(Method m);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /** Sets the MethodAccessor object for a java.lang.reflect.Method */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public void setMethodAccessor(Method m, MethodAccessor accessor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /** Gets the ConstructorAccessor object for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        java.lang.reflect.Constructor */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    77
    public ConstructorAccessor getConstructorAccessor(Constructor<?> c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    /** Sets the ConstructorAccessor object for a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        java.lang.reflect.Constructor */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    81
    public void setConstructorAccessor(Constructor<?> c,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                                       ConstructorAccessor accessor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
15510
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 5506
diff changeset
    84
    /** Gets the byte[] that encodes TypeAnnotations on an Executable. */
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 5506
diff changeset
    85
    public byte[] getExecutableTypeAnnotationBytes(Executable ex);
898d924a7efd 8004698: Implement Core Reflection for Type Annotations
jfranck
parents: 5506
diff changeset
    86
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /** Gets the "slot" field from a Constructor (used for serialization) */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    88
    public int getConstructorSlot(Constructor<?> c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /** Gets the "signature" field from a Constructor (used for serialization) */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    91
    public String getConstructorSignature(Constructor<?> c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /** Gets the "annotations" field from a Constructor (used for serialization) */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    94
    public byte[] getConstructorAnnotations(Constructor<?> c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /** Gets the "parameterAnnotations" field from a Constructor (used for serialization) */
3959
05a07c0a273b 5062288: (reflect) Core reflection uses raw types when it could be using wildcards
darcy
parents: 2
diff changeset
    97
    public byte[] getConstructorParameterAnnotations(Constructor<?> c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    // Copying routines, needed to quickly fabricate new Field,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    // Method, and Constructor objects from templates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /** Makes a "child" copy of a Method */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    public Method      copyMethod(Method arg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /** Makes a "child" copy of a Field */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    public Field       copyField(Field arg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /** Makes a "child" copy of a Constructor */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    public <T> Constructor<T> copyConstructor(Constructor<T> arg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
}