Uses of Interface
org.jboss.weld.introspector.WeldMethod

Packages that use WeldMethod
org.jboss.weld.bean   
org.jboss.weld.bootstrap   
org.jboss.weld.event   
org.jboss.weld.injection   
org.jboss.weld.introspector   
org.jboss.weld.introspector.jlr   
org.jboss.weld.metadata.cache   
org.jboss.weld.util   
 

Uses of WeldMethod in org.jboss.weld.bean
 

Methods in org.jboss.weld.bean that return WeldMethod
 WeldMethod<T,? super X> ProducerMethod.getWeldAnnotated()
          Gets the annotated item representing the method
 WeldMethod<T,? super X> DisposalMethod.getWeldAnnotated()
           
 

Methods in org.jboss.weld.bean that return types with arguments of type WeldMethod
 java.util.List<WeldMethod<?,? super T>> AbstractClassBean.getPostConstruct()
          Returns the post-construct method
 java.util.List<WeldMethod<?,? super T>> AbstractClassBean.getPreDestroy()
          Returns the pre-destroy method
 

Methods in org.jboss.weld.bean with parameters of type WeldMethod
protected  java.lang.String ProducerMethod.createId(WeldMethod<T,? super X> method, AbstractClassBean<X> declaringBean)
           
static
<X,T> DisposalMethod<X,T>
DisposalMethod.of(BeanManagerImpl manager, WeldMethod<T,? super X> method, AbstractClassBean<X> declaringBean)
           
static
<X,T> ProducerMethod<X,T>
ProducerMethod.of(WeldMethod<T,? super X> method, AbstractClassBean<X> declaringBean, BeanManagerImpl beanManager)
          Creates a producer method Web Bean
 

Constructors in org.jboss.weld.bean with parameters of type WeldMethod
DisposalMethod(BeanManagerImpl beanManager, WeldMethod<T,? super X> disposalMethod, AbstractClassBean<X> declaringBean)
           
ProducerMethod(WeldMethod<T,? super X> method, AbstractClassBean<X> declaringBean, BeanManagerImpl beanManager)
           
 

Uses of WeldMethod in org.jboss.weld.bootstrap
 

Methods in org.jboss.weld.bootstrap with parameters of type WeldMethod
protected
<T,X> void
ExtensionBeanDeployer.createObserverMethod(RIBean<X> declaringBean, BeanManagerImpl beanManager, WeldMethod<T,? super X> method, java.util.Set<ObserverMethodImpl<?,?>> observerMethods)
           
protected
<T,X> void
AbstractBeanDeployer.createObserverMethod(RIBean<X> declaringBean, WeldMethod<T,? super X> method)
           
protected
<X,T> void
AbstractBeanDeployer.createProducerMethod(AbstractClassBean<X> declaringBean, WeldMethod<T,? super X> annotatedMethod)
           
<X,T> ProducerMethod<X,T>
BeanDeployerEnvironment.getProducerMethod(WeldMethod<X,T> method)
           
 

Uses of WeldMethod in org.jboss.weld.event
 

Methods in org.jboss.weld.event with parameters of type WeldMethod
static
<T,X> ObserverMethodImpl<T,X>
ObserverFactory.create(WeldMethod<T,? super X> method, RIBean<X> declaringBean, BeanManagerImpl manager)
          Creates an observer
static javax.enterprise.event.TransactionPhase ObserverFactory.getTransactionalPhase(WeldMethod<?,?> observer)
          Tests an observer method to see if it is transactional.
 

Constructors in org.jboss.weld.event with parameters of type WeldMethod
ObserverMethodImpl(WeldMethod<T,? super X> observer, RIBean<X> declaringBean, BeanManagerImpl manager)
          Creates an Observer which describes and encapsulates an observer method (8.5).
 

Uses of WeldMethod in org.jboss.weld.injection
 

Classes in org.jboss.weld.injection that implement WeldMethod
 class MethodInjectionPoint<T,X>
           
 

Methods in org.jboss.weld.injection that return WeldMethod
protected  WeldMethod<T,X> MethodInjectionPoint.delegate()
           
 

Methods in org.jboss.weld.injection with parameters of type WeldMethod
static
<T,X> MethodInjectionPoint<T,X>
MethodInjectionPoint.of(javax.enterprise.inject.spi.Bean<?> declaringBean, WeldMethod<T,X> method)
           
 

Constructors in org.jboss.weld.injection with parameters of type WeldMethod
MethodInjectionPoint(javax.enterprise.inject.spi.Bean<?> declaringBean, WeldMethod<T,X> method)
           
 

Uses of WeldMethod in org.jboss.weld.introspector
 

Classes in org.jboss.weld.introspector that implement WeldMethod
 class ForwardingWeldMethod<T,X>
           
 

Methods in org.jboss.weld.introspector that return WeldMethod
protected abstract  WeldMethod<T,X> ForwardingWeldMethod.delegate()
           
 WeldMethod<?,?> WeldClass.getDeclaredWeldMethod(java.lang.reflect.Method method)
          Deprecated. 
 WeldMethod<?,?> ForwardingWeldClass.getDeclaredWeldMethod(java.lang.reflect.Method method)
          Deprecated. 
<M> WeldMethod<M,?>
WeldClass.getDeclaredWeldMethod(MethodSignature signature)
          Get a method by name
<M> WeldMethod<M,?>
ForwardingWeldClass.getDeclaredWeldMethod(MethodSignature signature, WeldClass<M> expectedReturnType)
           
 WeldMethod<?,?> WeldClass.getWeldMethod(java.lang.reflect.Method method)
          Deprecated. 
 WeldMethod<?,?> ForwardingWeldClass.getWeldMethod(java.lang.reflect.Method method)
          Deprecated. 
<M> WeldMethod<M,?>
WeldClass.getWeldMethod(MethodSignature signature)
          Get a method by name
<M> WeldMethod<M,?>
ForwardingWeldClass.getWeldMethod(MethodSignature signature)
           
 

Methods in org.jboss.weld.introspector that return types with arguments of type WeldMethod
 java.util.Set<WeldMethod<?,?>> WeldClass.getDeclaredWeldMethods()
          Gets all fields on the type
 java.util.Set<WeldMethod<?,? super T>> WeldClass.getDeclaredWeldMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all methods annotated with annotationType
 java.util.Set<WeldMethod<?,? super T>> ForwardingWeldClass.getDeclaredWeldMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<WeldMethod<?,? super T>> WeldClass.getDeclaredWeldMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all with parameters annotated with annotationType
 java.util.Set<WeldMethod<?,? super T>> ForwardingWeldClass.getDeclaredWeldMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<WeldMethod<?,?>> WeldAnnotation.getMembers()
          Gets all members
 java.util.Set<WeldMethod<?,?>> ForwardingWeldAnnotation.getMembers()
           
 java.util.Set<WeldMethod<?,?>> WeldAnnotation.getMembers(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all the members annotated with annotationType
 java.util.Set<WeldMethod<?,?>> ForwardingWeldAnnotation.getMembers(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<WeldMethod<?,?>> WeldClass.getWeldMethods()
          Gets all fields on the type
 java.util.Set<WeldMethod<?,?>> ForwardingWeldClass.getWeldMethods()
           
 java.util.Set<WeldMethod<?,?>> WeldClass.getWeldMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all methods annotated with annotationType
 java.util.Set<WeldMethod<?,?>> ForwardingWeldClass.getWeldMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 

Uses of WeldMethod in org.jboss.weld.introspector.jlr
 

Classes in org.jboss.weld.introspector.jlr that implement WeldMethod
 class WeldMethodImpl<T,X>
          Represents an annotated method This class is immutable and therefore threadsafe
 

Methods in org.jboss.weld.introspector.jlr that return WeldMethod
 WeldMethod<?,?> WeldClassImpl.getDeclaredWeldMethod(java.lang.reflect.Method method)
           
<M> WeldMethod<M,?>
WeldClassImpl.getDeclaredWeldMethod(MethodSignature signature)
           
 WeldMethod<?,?> WeldClassImpl.getWeldMethod(java.lang.reflect.Method methodDescriptor)
           
<M> WeldMethod<M,?>
WeldClassImpl.getWeldMethod(MethodSignature signature)
           
 

Methods in org.jboss.weld.introspector.jlr that return types with arguments of type WeldMethod
 java.util.Set<WeldMethod<?,?>> WeldClassImpl.getDeclaredWeldMethods()
           
 java.util.Set<WeldMethod<?,? super T>> WeldClassImpl.getDeclaredWeldMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<WeldMethod<?,? super T>> WeldClassImpl.getDeclaredWeldMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<WeldMethod<?,?>> WeldAnnotationImpl.getMembers()
          Gets all members of the annotation Initializes the members first if they are null
 java.util.Set<WeldMethod<?,?>> WeldAnnotationImpl.getMembers(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Returns the annotated members with a given annotation type If the annotated members are null, they are initialized first.
 java.util.Set<WeldMethod<?,?>> WeldClassImpl.getWeldMethods()
           
 java.util.Set<WeldMethod<?,?>> WeldClassImpl.getWeldMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets the abstracted methods that have a certain annotation type present If the annotated methods map is null, initialize it first
 

Constructors in org.jboss.weld.introspector.jlr with parameters of type WeldMethod
MethodSignatureImpl(WeldMethod<?,?> method)
           
 

Uses of WeldMethod in org.jboss.weld.metadata.cache
 

Methods in org.jboss.weld.metadata.cache that return types with arguments of type WeldMethod
 java.util.Set<WeldMethod<?,?>> QualifierModel.getNonBindingMembers()
          Gets the non-binding types
 

Uses of WeldMethod in org.jboss.weld.util
 

Methods in org.jboss.weld.util that return types with arguments of type WeldMethod
static java.util.List<WeldMethod<?,?>> Beans.getInterceptableMethods(WeldClass<?> type)
           
static
<T> java.util.List<WeldMethod<?,? super T>>
Beans.getPostConstructMethods(WeldClass<T> type)
           
static
<T> java.util.List<WeldMethod<?,? super T>>
Beans.getPreDestroyMethods(WeldClass<T> type)
           
 



Copyright © 2008-2010 Seam Framework. All Rights Reserved.