Uses of Class
org.jboss.webbeans.ManagerImpl

Packages that use ManagerImpl
org.jboss.webbeans   
org.jboss.webbeans.bean   
org.jboss.webbeans.bean.standard   
org.jboss.webbeans.bootstrap   
org.jboss.webbeans.event   
org.jboss.webbeans.injection   
 

Uses of ManagerImpl in org.jboss.webbeans
 

Fields in org.jboss.webbeans declared as ManagerImpl
protected static ManagerImpl CurrentManager.rootManager
           
 

Methods in org.jboss.webbeans that return ManagerImpl
static ManagerImpl CurrentManager.rootManager()
          Gets the root manager
 

Methods in org.jboss.webbeans with parameters of type ManagerImpl
static void CurrentManager.setRootManager(ManagerImpl rootManager)
          Sets the root manager
 

Constructors in org.jboss.webbeans with parameters of type ManagerImpl
BeanValidator(ManagerImpl manager)
           
 

Uses of ManagerImpl in org.jboss.webbeans.bean
 

Fields in org.jboss.webbeans.bean declared as ManagerImpl
protected  ManagerImpl AbstractBean.manager
           
 

Methods in org.jboss.webbeans.bean that return ManagerImpl
protected  ManagerImpl RIBean.getManager()
           
 

Methods in org.jboss.webbeans.bean with parameters of type ManagerImpl
static
<T> SimpleBean<T>
SimpleBean.of(AnnotatedClass<T> clazz, ManagerImpl manager)
          Creates a simple, annotation defined Web Bean
static
<T> NewSimpleBean<T>
NewSimpleBean.of(AnnotatedClass<T> clazz, ManagerImpl manager)
          Creates an instance of a NewSimpleBean from an annotated class
static
<T> NewEnterpriseBean<T>
NewEnterpriseBean.of(AnnotatedClass<T> clazz, ManagerImpl manager)
          Creates an instance of a NewEnterpriseBean from an annotated class
static
<T> EnterpriseBean<T>
EnterpriseBean.of(AnnotatedClass<T> clazz, ManagerImpl manager)
           
static
<T> ProducerFieldBean<T>
ProducerFieldBean.of(AnnotatedField<T> field, AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Creates a producer field Web Bean
static
<T,S> EventBean<T,S>
EventBean.of(AnnotatedItem<Event<T>,S> field, ManagerImpl manager)
          Creates an event Web Bean
static
<T,S> InstanceBean<T,S>
InstanceBean.of(AnnotatedItem<Instance<T>,S> item, ManagerImpl manager)
          Creates an instance Web Bean
static
<T> ProducerMethodBean<T>
ProducerMethodBean.of(AnnotatedMethod<T> method, AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Creates a producer method Web Bean
static
<T> SimpleBean<T>
SimpleBean.of(java.lang.Class<T> clazz, ManagerImpl manager)
          Creates a simple, annotation defined Web Bean
static
<T> NewSimpleBean<T>
NewSimpleBean.of(java.lang.Class<T> clazz, ManagerImpl manager)
          Creates an instance of a NewSimpleBean from a class
static
<T> NewEnterpriseBean<T>
NewEnterpriseBean.of(java.lang.Class<T> clazz, ManagerImpl manager)
          Creates an instance of a NewEnterpriseBean from a class
static
<T> EnterpriseBean<T>
EnterpriseBean.of(java.lang.Class<T> clazz, ManagerImpl manager)
          Creates a simple, annotation defined Enterprise Web Bean
static
<T> ProducerFieldBean<T>
ProducerFieldBean.of(java.lang.reflect.Field field, AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Creates a producer field Web Bean
static
<T> ProducerMethodBean<T>
ProducerMethodBean.of(java.lang.reflect.Method method, AbstractClassBean<?> declaringBean, ManagerImpl manager)
           
 

Constructors in org.jboss.webbeans.bean with parameters of type ManagerImpl
AbstractBean(ManagerImpl manager)
          Constructor
AbstractClassBean(AnnotatedClass<T> type, ManagerImpl manager)
          Constructor
AbstractFacadeBean(AnnotatedItem<T,S> field, ManagerImpl manager)
          Constructor
AbstractProducerBean(AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Constructor
EnterpriseBean(AnnotatedClass<T> type, ManagerImpl manager)
          Constructor
EventBean(AnnotatedItem<Event<T>,S> field, ManagerImpl manager)
          Constructor
InstanceBean(AnnotatedItem<Instance<T>,S> field, ManagerImpl manager)
          Constructor
NewEnterpriseBean(AnnotatedClass<T> type, ManagerImpl manager)
          Protected constructor
NewSimpleBean(AnnotatedClass<T> type, ManagerImpl manager)
          Protected constructor
ProducerFieldBean(AnnotatedField<T> field, AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Constructor
ProducerMethodBean(AnnotatedMethod<T> method, AbstractClassBean<?> declaringBean, ManagerImpl manager)
           
RIBean(ManagerImpl manager)
           
SimpleBean(AnnotatedClass<T> type, ManagerImpl manager)
          Constructor
 

Uses of ManagerImpl in org.jboss.webbeans.bean.standard
 

Methods in org.jboss.webbeans.bean.standard that return ManagerImpl
 ManagerImpl ManagerBean.create(CreationalContext<ManagerImpl> creationalContext)
           
 

Methods in org.jboss.webbeans.bean.standard that return types with arguments of type ManagerImpl
 java.lang.Class<ManagerImpl> ManagerBean.getType()
           
 

Methods in org.jboss.webbeans.bean.standard with parameters of type ManagerImpl
 void ManagerBean.destroy(ManagerImpl instance)
           
static ManagerBean ManagerBean.of(ManagerImpl manager)
           
static InjectionPointBean InjectionPointBean.of(ManagerImpl manager)
          Creates an InjectionPoint Web Bean for the injection of the containing bean owning the field, constructor or method for the annotated item
 

Method parameters in org.jboss.webbeans.bean.standard with type arguments of type ManagerImpl
 ManagerImpl ManagerBean.create(CreationalContext<ManagerImpl> creationalContext)
           
 

Constructors in org.jboss.webbeans.bean.standard with parameters of type ManagerImpl
AbstractStandardBean(ManagerImpl manager)
           
InjectionPointBean(AnnotatedClass<InjectionPoint> clazz, ManagerImpl manager)
           
ManagerBean(ManagerImpl manager)
           
 

Uses of ManagerImpl in org.jboss.webbeans.bootstrap
 

Methods in org.jboss.webbeans.bootstrap that return ManagerImpl
 ManagerImpl WebBeansBootstrap.getManager()
           
 

Constructors in org.jboss.webbeans.bootstrap with parameters of type ManagerImpl
BeanDeployer(ManagerImpl manager)
           
 

Uses of ManagerImpl in org.jboss.webbeans.event
 

Methods in org.jboss.webbeans.event with parameters of type ManagerImpl
static
<T> ObserverImpl<T>
ObserverImpl.of(AnnotatedMethod<?> method, AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Creates an observer
 

Constructors in org.jboss.webbeans.event with parameters of type ManagerImpl
ObserverImpl(AnnotatedMethod<?> observer, Bean<?> observerBean, ManagerImpl manager)
          Creates an Observer which describes and encapsulates an observer method (8.5).
 

Uses of ManagerImpl in org.jboss.webbeans.injection
 

Methods in org.jboss.webbeans.injection with parameters of type ManagerImpl
protected  java.lang.Object[] MethodInjectionPoint.getParameterValues(java.util.List<ParameterInjectionPoint<?>> parameters, java.lang.Class<? extends java.lang.annotation.Annotation> specialParam, java.lang.Object specialVal, ManagerImpl manager, CreationalContext<?> creationalContext)
          Helper method for getting the current parameter values from a list of annotated parameters.
protected  java.lang.Object[] ConstructorInjectionPoint.getParameterValues(java.util.List<ParameterInjectionPoint<?>> parameters, java.lang.Object specialVal, java.lang.Class<? extends java.lang.annotation.Annotation> specialParam, ManagerImpl manager, CreationalContext<?> creationalContext)
          Helper method for getting the current parameter values from a list of annotated parameters.
 T ParameterInjectionPoint.getValueToInject(ManagerImpl manager, CreationalContext<?> creationalContext)
           
 void FieldInjectionPoint.inject(java.lang.Object declaringInstance, ManagerImpl manager, CreationalContext<?> creationalContext)
           
 T MethodInjectionPoint.invoke(java.lang.Object declaringInstance, ManagerImpl manager, CreationalContext<?> creationalContext)
           
 T MethodInjectionPoint.invokeWithSpecialValue(java.lang.Object declaringInstance, java.lang.Class<? extends java.lang.annotation.Annotation> annotatedParameter, java.lang.Object parameter, ManagerImpl manager, CreationalContext<?> creationalContext, java.lang.Class<? extends java.lang.RuntimeException> exceptionTypeToThrow)
           
 T ConstructorInjectionPoint.newInstance(ManagerImpl manager, CreationalContext<?> creationalContext)
           
 

Constructors in org.jboss.webbeans.injection with parameters of type ManagerImpl
Resolver(ManagerImpl manager)
          Constructor
 



Copyright © 2008-2009. All Rights Reserved.