JBoss Reflection 2.2.1.SP1

Uses of Interface
org.jboss.reflect.spi.MethodInfo

Packages that use MethodInfo
org.jboss.beans.info.plugins Classes used to describe beans, an abstract implementation. 
org.jboss.beans.info.spi Classes used to describe beans. 
org.jboss.beans.info.spi.helpers   
org.jboss.joinpoint.plugins Basic Join Points. 
org.jboss.joinpoint.spi Join Point API. 
org.jboss.reflect.plugins Abstract extended reflection implementations. 
org.jboss.reflect.plugins.bytecode   
org.jboss.reflect.plugins.introspection Introspection based extended reflection. 
org.jboss.reflect.plugins.javassist   
org.jboss.reflect.spi Extended Reflection API. 
 

Uses of MethodInfo in org.jboss.beans.info.plugins
 

Methods in org.jboss.beans.info.plugins that return MethodInfo
 MethodInfo GetterAndFieldPropertyInfo.getGetter()
           
 MethodInfo NestedPropertyInfo.getGetter()
           
 MethodInfo DefaultPropertyInfo.getGetter()
           
 MethodInfo FieldPropertyInfo.getGetter()
           
 MethodInfo SetterAndFieldPropertyInfo.getSetter()
           
 MethodInfo NestedPropertyInfo.getSetter()
           
 MethodInfo DefaultPropertyInfo.getSetter()
           
 MethodInfo FieldPropertyInfo.getSetter()
           
 

Methods in org.jboss.beans.info.plugins that return types with arguments of type MethodInfo
 Set<MethodInfo> AbstractBeanInfo.getMethods()
           
protected  Set<MethodInfo> AbstractBeanInfoFactory.getMethods(ClassInfo classInfo)
          Get the methods
 

Methods in org.jboss.beans.info.plugins with parameters of type MethodInfo
protected  TypeInfo AbstractBeanInfoFactory.getPropertyType(MethodInfo getter, MethodInfo setter)
          Determine the type of PropertyInfo.
protected static boolean AbstractBeanInfoFactory.isGetter(MethodInfo minfo)
           
protected static boolean AbstractBeanInfoFactory.isSetter(MethodInfo minfo)
           
 void GetterAndFieldPropertyInfo.setGetter(MethodInfo getter)
           
 void NestedPropertyInfo.setGetter(MethodInfo getter)
           
 void DefaultPropertyInfo.setGetter(MethodInfo getter)
           
 void FieldPropertyInfo.setGetter(MethodInfo getter)
           
 void SetterAndFieldPropertyInfo.setSetter(MethodInfo setter)
           
 void NestedPropertyInfo.setSetter(MethodInfo setter)
           
 void DefaultPropertyInfo.setSetter(MethodInfo setter)
           
 void FieldPropertyInfo.setSetter(MethodInfo setter)
           
 

Method parameters in org.jboss.beans.info.plugins with type arguments of type MethodInfo
protected  BeanInfo AbstractBeanInfoFactory.createBeanInfo(ClassAdapter classAdapter, BeanAccessMode accessMode, Set<PropertyInfo> properties, Set<ConstructorInfo> constructors, Set<MethodInfo> methods, Set<EventInfo> events)
          Create the bean info
protected  Set<PropertyInfo> AbstractBeanInfoFactory.getAnnotationProperties(Set<MethodInfo> methods)
          Get the properties for an annotation
protected  Set<PropertyInfo> AbstractBeanInfoFactory.getBeanProperties(Set<MethodInfo> methods)
          Get the properties for a bean
 void AbstractBeanInfo.setMethods(Set<MethodInfo> methods)
           
 

Constructors in org.jboss.beans.info.plugins with parameters of type MethodInfo
DefaultPropertyInfo(String name, String upperName, TypeInfo type, MethodInfo getter, MethodInfo setter)
          Create a new property info
DefaultPropertyInfo(String name, String upperName, TypeInfo type, MethodInfo getter, MethodInfo setter, AnnotationValue[] annotations)
          Create a new property info
 

Constructor parameters in org.jboss.beans.info.plugins with type arguments of type MethodInfo
AbstractBeanInfo(BeanInfoFactory beanInfoFactory, ClassAdapter classAdapter, Set<PropertyInfo> properties, Set<ConstructorInfo> constructors, Set<MethodInfo> methods, Set<EventInfo> events)
          Create a new bean info
AllBeanInfo(BeanInfoFactory beanInfoFactory, ClassAdapter classAdapter, Set<PropertyInfo> properties, Set<ConstructorInfo> constructors, Set<MethodInfo> methods, Set<EventInfo> events)
           
FieldBeanInfo(BeanInfoFactory beanInfoFactory, ClassAdapter classAdapter, Set<PropertyInfo> properties, Set<ConstructorInfo> constructors, Set<MethodInfo> methods, Set<EventInfo> events)
           
 

Uses of MethodInfo in org.jboss.beans.info.spi
 

Methods in org.jboss.beans.info.spi that return MethodInfo
 MethodInfo PropertyInfo.getGetter()
          Get the getter
 MethodInfo PropertyInfo.getSetter()
          Get the setter
 

Methods in org.jboss.beans.info.spi that return types with arguments of type MethodInfo
 Set<MethodInfo> BeanInfo.getMethods()
          Get the method information.
 

Methods in org.jboss.beans.info.spi with parameters of type MethodInfo
 void PropertyInfo.setGetter(MethodInfo getter)
          Set the getter
 void PropertyInfo.setSetter(MethodInfo setter)
          Set the setter
 

Method parameters in org.jboss.beans.info.spi with type arguments of type MethodInfo
 BeanInfo BeanAccessMode.create(BeanInfoFactory beanInfoFactory, ClassAdapter classAdapter, Set<PropertyInfo> properties, Set<ConstructorInfo> constructors, Set<MethodInfo> methods, Set<EventInfo> events)
          Create the bean info
 void BeanInfo.setMethods(Set<MethodInfo> methods)
          Set the method information.
 

Uses of MethodInfo in org.jboss.beans.info.spi.helpers
 

Methods in org.jboss.beans.info.spi.helpers that return types with arguments of type MethodInfo
 Set<MethodInfo> UnmodifiableBeanInfo.getMethods()
           
 

Method parameters in org.jboss.beans.info.spi.helpers with type arguments of type MethodInfo
 void UnmodifiableBeanInfo.setMethods(Set<MethodInfo> methods)
           
 

Uses of MethodInfo in org.jboss.joinpoint.plugins
 

Fields in org.jboss.joinpoint.plugins declared as MethodInfo
protected  MethodInfo BasicMethodJoinPoint.methodInfo
          The method info
 

Methods in org.jboss.joinpoint.plugins that return MethodInfo
static MethodInfo Config.findMethodInfo(ClassInfo classInfo, String name, String[] paramTypes)
          Find method info
static MethodInfo Config.findMethodInfo(ClassInfo classInfo, String name, String[] paramTypes, boolean strict)
          Find method info
static MethodInfo Config.findMethodInfo(ClassInfo classInfo, String name, String[] paramTypes, boolean isStatic, boolean isPublic)
          Find method info
static MethodInfo Config.findMethodInfo(ClassInfo classInfo, String name, String[] paramTypes, boolean isStatic, boolean isPublic, boolean strict)
          Find method info
 MethodInfo BasicMethodJoinPoint.getMethodInfo()
           
 

Methods in org.jboss.joinpoint.plugins with parameters of type MethodInfo
 MethodJoinpoint BasicJoinpointFactory.getMethodJoinpoint(MethodInfo methodInfo)
           
 

Constructors in org.jboss.joinpoint.plugins with parameters of type MethodInfo
BasicMethodJoinPoint(MethodInfo methodInfo)
          Create a new method join point
 

Uses of MethodInfo in org.jboss.joinpoint.spi
 

Methods in org.jboss.joinpoint.spi that return MethodInfo
 MethodInfo MethodJoinpoint.getMethodInfo()
          Get the method info
 

Methods in org.jboss.joinpoint.spi with parameters of type MethodInfo
 MethodJoinpoint JoinpointFactory.getMethodJoinpoint(MethodInfo methodInfo)
          Get a method join point
 

Uses of MethodInfo in org.jboss.reflect.plugins
 

Classes in org.jboss.reflect.plugins that implement MethodInfo
 class MethodInfoImpl
          Method info
 

Fields in org.jboss.reflect.plugins declared as MethodInfo
protected  MethodInfo[] ClassInfoImpl.methods
          The methods
static MethodInfo[] ClassInfoImpl.UNKNOWN_METHODS
          Marker for generation
 

Methods in org.jboss.reflect.plugins that return MethodInfo
static MethodInfo ClassInfoImpl.findMethod(MethodInfo[] methods, String name, TypeInfo[] parameters)
          Find a method
 MethodInfo ClassInfoImpl.getDeclaredMethod(String methodName, TypeInfo... parameters)
           
 MethodInfo[] ClassInfoImpl.getDeclaredMethods()
           
 

Methods in org.jboss.reflect.plugins with parameters of type MethodInfo
static MethodInfo ClassInfoImpl.findMethod(MethodInfo[] methods, String name, TypeInfo[] parameters)
          Find a method
 

Uses of MethodInfo in org.jboss.reflect.plugins.bytecode
 

Classes in org.jboss.reflect.plugins.bytecode that implement MethodInfo
 class BytecodeMethodInfo
          MethodInfo that relies on Javassist to answer reflective queries and to invoke the represented method.
 

Methods in org.jboss.reflect.plugins.bytecode that return MethodInfo
protected  MethodInfo BytecodeTypeInfo.generateMethodInfo(MethodBytes method)
          Generate method info
protected  MethodInfo BytecodeTypeInfo.generateMethodInfo(SignatureKey key)
          Generate method info
 MethodInfo BytecodeTypeInfo.getDeclaredMethod(String methodName)
           
 MethodInfo BytecodeTypeInfo.getDeclaredMethod(String methodName, String... parameters)
           
 MethodInfo BytecodeTypeInfo.getDeclaredMethod(String methodName, TypeInfo... parameters)
           
 MethodInfo[] BytecodeTypeInfo.getDeclaredMethods()
           
 

Uses of MethodInfo in org.jboss.reflect.plugins.introspection
 

Classes in org.jboss.reflect.plugins.introspection that implement MethodInfo
 class ReflectMethodInfoImpl
          Method info
 

Uses of MethodInfo in org.jboss.reflect.plugins.javassist
 

Classes in org.jboss.reflect.plugins.javassist that implement MethodInfo
 class JavassistMethodInfo
          MethodInfo that relies on Javassist to answer reflective queries and to invoke the represented method.
 

Uses of MethodInfo in org.jboss.reflect.spi
 

Subinterfaces of MethodInfo in org.jboss.reflect.spi
 interface MutableMethodInfo
          A MutableMethod Info.
 

Methods in org.jboss.reflect.spi that return MethodInfo
 MethodInfo ClassInfo.getDeclaredMethod(String name, TypeInfo... parameters)
          Get the declared method
 MethodInfo DelegateClassInfo.getDeclaredMethod(String name, TypeInfo... parameters)
           
 MethodInfo NumberInfo.getDeclaredMethod(String methodName, TypeInfo... parameters)
           
 MethodInfo[] ClassInfo.getDeclaredMethods()
          Get the declared methods
 MethodInfo[] DelegateClassInfo.getDeclaredMethods()
           
 MethodInfo[] NumberInfo.getDeclaredMethods()
           
 

Methods in org.jboss.reflect.spi with parameters of type MethodInfo
static long MethodInfoHashing.methodHash(MethodInfo method)
           
 


JBoss Reflection 2.2.1.SP1

Copyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.