Uses of Class
javax.inject.manager.Bean

Packages that use Bean
javax.inject.manager   
 

Uses of Bean in javax.inject.manager
 

Subclasses of Bean in javax.inject.manager
 class Decorator
          The Bean object for a a decorator This interface should not be called directly by the application.
 class Interceptor
          The contract between the manager and a interceptor.
 

Methods in javax.inject.manager that return Bean
 Bean<?> InjectionPoint.getBean()
          Get the Bean object representing the Web Bean that defines the injection point
 

Methods in javax.inject.manager that return types with arguments of type Bean
 java.util.Set<Bean<?>> Manager.resolveByName(java.lang.String name)
          Allows beans to be matched by considering the bean name and deployment precedence.
<T> java.util.Set<Bean<T>>
Manager.resolveByType(java.lang.Class<T> type, java.lang.annotation.Annotation... bindings)
          Allows beans to be matched to injection point by considering bean type, bindings, and deployment precedence.
<T> java.util.Set<Bean<T>>
Manager.resolveByType(TypeLiteral<T> type, java.lang.annotation.Annotation... bindings)
          Allows beans to be matched to injection point by considering bean type, bindings, and deployment precedence.
 

Methods in javax.inject.manager with parameters of type Bean
 Manager Manager.addBean(Bean<?> bean)
          Allows a new bean to be registered.
<T> T
Manager.getInstance(Bean<T> bean)
          Obtains an instance of a bean
 



Copyright © 2008-2009. All Rights Reserved.