Uses of Interface
org.jboss.webbeans.introspector.AnnotatedMethod

Packages that use AnnotatedMethod
org.jboss.webbeans.bean   
org.jboss.webbeans.bootstrap   
org.jboss.webbeans.event   
org.jboss.webbeans.injection   
org.jboss.webbeans.introspector   
org.jboss.webbeans.introspector.jlr   
org.jboss.webbeans.metadata   
 

Uses of AnnotatedMethod in org.jboss.webbeans.bean
 

Methods in org.jboss.webbeans.bean that return AnnotatedMethod
 AnnotatedMethod<T> DisposalMethodBean.getAnnotatedItem()
           
 AnnotatedMethod<T> ProducerMethodBean.getAnnotatedItem()
          Gets the annotated item representing the method
 AnnotatedMethod<?> SimpleBean.getPostConstruct()
          Returns the post-construct method
 AnnotatedMethod<?> SimpleBean.getPreDestroy()
          Returns the pre-destroy method
 

Methods in org.jboss.webbeans.bean with parameters of type AnnotatedMethod
 boolean EnterpriseBean.isMethodExistsOnTypes(AnnotatedMethod<?> method)
           
static
<T> ProducerMethodBean<T>
ProducerMethodBean.of(AnnotatedMethod<T> method, AbstractClassBean<?> declaringBean, ManagerImpl manager)
          Creates a producer method Web Bean
static
<T> DisposalMethodBean<T>
DisposalMethodBean.of(ManagerImpl manager, AnnotatedMethod<T> disposalMethod, AbstractClassBean<?> declaringBean)
           
 

Constructors in org.jboss.webbeans.bean with parameters of type AnnotatedMethod
DisposalMethodBean(ManagerImpl manager, AnnotatedMethod<T> disposalMethod, AbstractClassBean<?> declaringBean)
           
ProducerMethodBean(AnnotatedMethod<T> method, AbstractClassBean<?> declaringBean, ManagerImpl manager)
           
 

Uses of AnnotatedMethod in org.jboss.webbeans.bootstrap
 

Methods in org.jboss.webbeans.bootstrap with parameters of type AnnotatedMethod
 DisposalMethodBean<?> BeanDeployerEnvironment.getDisposalMethod(AnnotatedMethod<?> method)
           
 ProducerMethodBean<?> BeanDeployerEnvironment.getProducerMethod(AnnotatedMethod<?> method)
           
 

Uses of AnnotatedMethod in org.jboss.webbeans.event
 

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

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

Uses of AnnotatedMethod in org.jboss.webbeans.injection
 

Classes in org.jboss.webbeans.injection that implement AnnotatedMethod
 class MethodInjectionPoint<T>
           
 

Methods in org.jboss.webbeans.injection that return AnnotatedMethod
protected  AnnotatedMethod<T> MethodInjectionPoint.delegate()
           
 

Methods in org.jboss.webbeans.injection with parameters of type AnnotatedMethod
static
<T> MethodInjectionPoint<T>
MethodInjectionPoint.of(Bean<?> declaringBean, AnnotatedMethod<T> method)
           
 

Constructors in org.jboss.webbeans.injection with parameters of type AnnotatedMethod
MethodInjectionPoint(Bean<?> declaringBean, AnnotatedMethod<T> method)
           
 

Uses of AnnotatedMethod in org.jboss.webbeans.introspector
 

Classes in org.jboss.webbeans.introspector that implement AnnotatedMethod
 class ForwardingAnnotatedMethod<T>
           
 class WrappedAnnotatedMethod<T>
           
 

Methods in org.jboss.webbeans.introspector that return AnnotatedMethod
protected abstract  AnnotatedMethod<T> ForwardingAnnotatedMethod.delegate()
           
protected  AnnotatedMethod<T> WrappedAnnotatedMethod.delegate()
           
 AnnotatedMethod<?> AnnotatedClass.getDeclaredMethod(java.lang.reflect.Method method)
          Deprecated. 
 AnnotatedMethod<?> ForwardingAnnotatedClass.getDeclaredMethod(java.lang.reflect.Method method)
          Deprecated. 
<M> AnnotatedMethod<M>
AnnotatedClass.getDeclaredMethod(MethodSignature signature, AnnotatedClass<M> expectedReturnType)
          Get a method by name
<M> AnnotatedMethod<M>
ForwardingAnnotatedClass.getDeclaredMethod(MethodSignature signature, AnnotatedClass<M> expectedReturnType)
           
<A> AnnotatedMethod<A>
AnnotatedAnnotation.getMember(java.lang.String memberName, AnnotatedClass<A> expectedType)
          Get an annotation member by name
 AnnotatedMethod<?> AnnotatedClass.getMethod(java.lang.reflect.Method method)
          Deprecated. 
 AnnotatedMethod<?> ForwardingAnnotatedClass.getMethod(java.lang.reflect.Method method)
          Deprecated. 
 

Methods in org.jboss.webbeans.introspector that return types with arguments of type AnnotatedMethod
 java.util.Set<AnnotatedMethod<?>> AnnotatedAnnotation.getAnnotatedMembers(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all the members annotated with annotationType
 java.util.Set<AnnotatedMethod<?>> ForwardingAnnotatedAnnotation.getAnnotatedMembers(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedClass.getAnnotatedMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all methods annotated with annotationType
 java.util.Set<AnnotatedMethod<?>> ForwardingAnnotatedClass.getAnnotatedMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedClass.getDeclaredAnnotatedMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all methods annotated with annotationType
 java.util.Set<AnnotatedMethod<?>> ForwardingAnnotatedClass.getDeclaredAnnotatedMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedClass.getDeclaredMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all with parameters annotated with annotationType
 java.util.Set<AnnotatedMethod<?>> ForwardingAnnotatedClass.getDeclaredMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedAnnotation.getMembers()
          Gets all members
 java.util.Set<AnnotatedMethod<?>> ForwardingAnnotatedAnnotation.getMembers()
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedClass.getMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
          Gets all with parameters annotated with annotationType
 java.util.Set<AnnotatedMethod<?>> ForwardingAnnotatedClass.getMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 

Constructors in org.jboss.webbeans.introspector with parameters of type AnnotatedMethod
WrappedAnnotatedMethod(AnnotatedMethod<T> method, java.util.Set<java.lang.annotation.Annotation> extraAnnotations)
           
 

Uses of AnnotatedMethod in org.jboss.webbeans.introspector.jlr
 

Classes in org.jboss.webbeans.introspector.jlr that implement AnnotatedMethod
 class AnnotatedMethodImpl<T>
          Represents an annotated method This class is immutable and therefore threadsafe
 

Methods in org.jboss.webbeans.introspector.jlr that return AnnotatedMethod
 AnnotatedMethod<?> AnnotatedClassImpl.getDeclaredMethod(java.lang.reflect.Method method)
           
<M> AnnotatedMethod<M>
AnnotatedClassImpl.getDeclaredMethod(MethodSignature signature, AnnotatedClass<M> expectedReturnType)
           
<A> AnnotatedMethod<A>
AnnotatedAnnotationImpl.getMember(java.lang.String memberName, AnnotatedClass<A> expectedType)
           
 AnnotatedMethod<?> AnnotatedClassImpl.getMethod(java.lang.reflect.Method methodDescriptor)
           
 

Methods in org.jboss.webbeans.introspector.jlr that return types with arguments of type AnnotatedMethod
 java.util.Set<AnnotatedMethod<?>> AnnotatedAnnotationImpl.getAnnotatedMembers(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<AnnotatedMethod<?>> AnnotatedClassImpl.getAnnotatedMethods(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
 java.util.Set<AnnotatedMethod<?>> AnnotatedClassImpl.getDeclaredAnnotatedMethods(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedClassImpl.getDeclaredMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 java.util.Set<AnnotatedMethod<?>> AnnotatedAnnotationImpl.getMembers()
          Gets all members of the annotation Initializes the members first if they are null
 java.util.Set<AnnotatedMethod<?>> AnnotatedClassImpl.getMethodsWithAnnotatedParameters(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
           
 

Constructors in org.jboss.webbeans.introspector.jlr with parameters of type AnnotatedMethod
MethodSignatureImpl(AnnotatedMethod<?> method)
           
 

Uses of AnnotatedMethod in org.jboss.webbeans.metadata
 

Methods in org.jboss.webbeans.metadata that return types with arguments of type AnnotatedMethod
 java.util.Set<AnnotatedMethod<?>> BindingTypeModel.getNonBindingTypes()
          Gets the non-binding types
 



Copyright © 2011. All Rights Reserved.