JBoss Reflection 2.2.1.SP1

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

Packages that use ConstructorInfo
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 ConstructorInfo in org.jboss.beans.info.plugins
 

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

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

Constructor parameters in org.jboss.beans.info.plugins with type arguments of type ConstructorInfo
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 ConstructorInfo in org.jboss.beans.info.spi
 

Methods in org.jboss.beans.info.spi that return types with arguments of type ConstructorInfo
 Set<ConstructorInfo> BeanInfo.getConstructors()
          Get the constructor info.
 

Method parameters in org.jboss.beans.info.spi with type arguments of type ConstructorInfo
 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.setConstructors(Set<ConstructorInfo> constructors)
          Set the constructor info.
 

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

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

Method parameters in org.jboss.beans.info.spi.helpers with type arguments of type ConstructorInfo
 void UnmodifiableBeanInfo.setConstructors(Set<ConstructorInfo> constructors)
           
 

Uses of ConstructorInfo in org.jboss.joinpoint.plugins
 

Fields in org.jboss.joinpoint.plugins declared as ConstructorInfo
protected  ConstructorInfo BasicConstructorJoinPoint.constructorInfo
          The constructor info
 

Methods in org.jboss.joinpoint.plugins that return ConstructorInfo
static ConstructorInfo Config.findConstructorInfo(ClassInfo classInfo, String[] paramTypes)
          Find constructor info
 ConstructorInfo BasicConstructorJoinPoint.getConstructorInfo()
           
 

Methods in org.jboss.joinpoint.plugins with parameters of type ConstructorInfo
 ConstructorJoinpoint BasicJoinpointFactory.getConstructorJoinpoint(ConstructorInfo constructorInfo)
           
 ConstructorJoinpoint BasicJoinpointFactory.getConstructorJoinpoint(ConstructorInfo constructorInfo, Object metaData)
           
 

Constructors in org.jboss.joinpoint.plugins with parameters of type ConstructorInfo
BasicConstructorJoinPoint(ConstructorInfo constructorInfo)
          Create a new constructor join point
 

Uses of ConstructorInfo in org.jboss.joinpoint.spi
 

Methods in org.jboss.joinpoint.spi that return ConstructorInfo
 ConstructorInfo ConstructorJoinpoint.getConstructorInfo()
          Get the constructor info for this join point
 

Methods in org.jboss.joinpoint.spi with parameters of type ConstructorInfo
 ConstructorJoinpoint JoinpointFactory.getConstructorJoinpoint(ConstructorInfo constructorInfo)
          Get a constructor join point
 ConstructorJoinpoint JoinpointFactory.getConstructorJoinpoint(ConstructorInfo constructorInfo, Object metaData)
          Get a constructor join point
 

Uses of ConstructorInfo in org.jboss.reflect.plugins
 

Classes in org.jboss.reflect.plugins that implement ConstructorInfo
 class ConstructorInfoImpl
          Constructor info
 

Fields in org.jboss.reflect.plugins declared as ConstructorInfo
protected  ConstructorInfo[] ClassInfoImpl.constructors
          The constructor info
static ConstructorInfo[] ClassInfoImpl.UNKNOWN_CONSTRUCTORS
          Marker for generation
 

Methods in org.jboss.reflect.plugins that return ConstructorInfo
static ConstructorInfo ClassInfoImpl.findConstructor(ConstructorInfo[] constructors, TypeInfo[] parameters)
          Find a constructor
 ConstructorInfo ClassInfoImpl.getDeclaredConstructor(TypeInfo... parameters)
           
 ConstructorInfo[] ClassInfoImpl.getDeclaredConstructors()
           
 

Methods in org.jboss.reflect.plugins with parameters of type ConstructorInfo
static ConstructorInfo ClassInfoImpl.findConstructor(ConstructorInfo[] constructors, TypeInfo[] parameters)
          Find a constructor
 

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

Classes in org.jboss.reflect.plugins.bytecode that implement ConstructorInfo
 class BytecodeConstructorInfo
          ConstructorInfo that relies on Javassist to answer reflective queries and to invoke the represented constructor.
 

Methods in org.jboss.reflect.plugins.bytecode that return ConstructorInfo
protected  ConstructorInfo BytecodeTypeInfo.generateConstructorInfo(ConstructorBytes constructor)
          Generate constructor info
protected  ConstructorInfo BytecodeTypeInfo.generateConstructorInfo(SignatureKey key)
          Generate constructor info
 ConstructorInfo BytecodeTypeInfo.getDeclaredConstructor()
           
 ConstructorInfo BytecodeTypeInfo.getDeclaredConstructor(String... parameters)
           
 ConstructorInfo BytecodeTypeInfo.getDeclaredConstructor(TypeInfo... parameters)
           
 ConstructorInfo[] BytecodeTypeInfo.getDeclaredConstructors()
           
 

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

Classes in org.jboss.reflect.plugins.introspection that implement ConstructorInfo
 class ReflectConstructorInfoImpl
          Constructor info
 

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

Classes in org.jboss.reflect.plugins.javassist that implement ConstructorInfo
 class JavassistConstructorInfo
          ConstructorInfo that relies on Javassist to answer reflective queries and to invoke the represented constructor.
 

Uses of ConstructorInfo in org.jboss.reflect.spi
 

Subinterfaces of ConstructorInfo in org.jboss.reflect.spi
 interface MutableConstructorInfo
          A MutableConstructorInfo.
 

Methods in org.jboss.reflect.spi that return ConstructorInfo
 ConstructorInfo ClassInfo.getDeclaredConstructor(TypeInfo... parameters)
          Get a declared constructor
 ConstructorInfo DelegateClassInfo.getDeclaredConstructor(TypeInfo... parameters)
           
 ConstructorInfo NumberInfo.getDeclaredConstructor(TypeInfo... parameters)
           
 ConstructorInfo[] ClassInfo.getDeclaredConstructors()
          Get the declared constructors
 ConstructorInfo[] DelegateClassInfo.getDeclaredConstructors()
           
 ConstructorInfo[] NumberInfo.getDeclaredConstructors()
           
 


JBoss Reflection 2.2.1.SP1

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