Class AnnotationProviderChain
- java.lang.Object
 - 
- org.apache.tapestry5.commons.internal.services.AnnotationProviderChain
 
 
- 
- All Implemented Interfaces:
 AnnotationProvider
public class AnnotationProviderChain extends Object implements AnnotationProvider
Chain of command forAnnotationProvider. 
- 
- 
Constructor Summary
Constructors Constructor Description AnnotationProviderChain(AnnotationProvider[] providers) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AnnotationProvidercreate(List<AnnotationProvider> providers)Creates an AnnotationProvider from the list of providers.<T extends Annotation>
TgetAnnotation(Class<T> annotationClass)Searches for the specified annotation, returning the matching annotation instance. 
 - 
 
- 
- 
Constructor Detail
- 
AnnotationProviderChain
public AnnotationProviderChain(AnnotationProvider[] providers)
 
 - 
 
- 
Method Detail
- 
create
public static AnnotationProvider create(List<AnnotationProvider> providers)
Creates an AnnotationProvider from the list of providers. Returns either anAnnotationProviderChainor the sole element in the list. 
- 
getAnnotation
public <T extends Annotation> T getAnnotation(Class<T> annotationClass)
Description copied from interface:AnnotationProviderSearches for the specified annotation, returning the matching annotation instance.- Specified by:
 getAnnotationin interfaceAnnotationProvider- Parameters:
 annotationClass- used to select the annotation to return- Returns:
 - the annotation, or null if not found
 
 
 - 
 
 -