< prev index next >

src/jdk.vm.ci/share/classes/jdk.vm.ci.meta/src/jdk/vm/ci/meta/MetaAccessProvider.java

Print this page




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 package jdk.vm.ci.meta;
  24 
  25 import java.lang.reflect.*;



  26 
  27 /**
  28  * Provides access to the metadata of a class typically provided in a class file.
  29  */
  30 public interface MetaAccessProvider {
  31 
  32     /**
  33      * Returns the resolved Java type representing a given Java class.
  34      *
  35      * @param clazz the Java class object
  36      * @return the resolved Java type object
  37      */
  38     ResolvedJavaType lookupJavaType(Class<?> clazz);
  39 
  40     /**
  41      * Returns the resolved Java types representing some given Java classes.
  42      *
  43      * @param classes the Java class objects
  44      * @return the resolved Java type objects
  45      */




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 package jdk.vm.ci.meta;
  24 
  25 import java.lang.reflect.Constructor;
  26 import java.lang.reflect.Executable;
  27 import java.lang.reflect.Field;
  28 import java.lang.reflect.Method;
  29 
  30 /**
  31  * Provides access to the metadata of a class typically provided in a class file.
  32  */
  33 public interface MetaAccessProvider {
  34 
  35     /**
  36      * Returns the resolved Java type representing a given Java class.
  37      *
  38      * @param clazz the Java class object
  39      * @return the resolved Java type object
  40      */
  41     ResolvedJavaType lookupJavaType(Class<?> clazz);
  42 
  43     /**
  44      * Returns the resolved Java types representing some given Java classes.
  45      *
  46      * @param classes the Java class objects
  47      * @return the resolved Java type objects
  48      */


< prev index next >