Class AnnotationProviderChain
- java.lang.Object
-
- org.apache.tapestry5.commons.internal.services.AnnotationProviderChain
-
- All Implemented Interfaces:
AnnotationProvider
public class AnnotationProviderChain extends java.lang.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 AnnotationProvider
create(java.util.List<AnnotationProvider> providers)
Creates an AnnotationProvider from the list of providers.<T extends java.lang.annotation.Annotation>
TgetAnnotation(java.lang.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(java.util.List<AnnotationProvider> providers)
Creates an AnnotationProvider from the list of providers. Returns either anAnnotationProviderChain
or the sole element in the list.
-
getAnnotation
public <T extends java.lang.annotation.Annotation> T getAnnotation(java.lang.Class<T> annotationClass)
Description copied from interface:AnnotationProvider
Searches for the specified annotation, returning the matching annotation instance.- Specified by:
getAnnotation
in interfaceAnnotationProvider
- Parameters:
annotationClass
- used to select the annotation to return- Returns:
- the annotation, or null if not found
-
-