Package org.atmosphere.util.annotation
Interface AnnotationDetector.Reporter
- All Known Subinterfaces:
AnnotationDetector.FieldReporter,AnnotationDetector.MethodReporter,AnnotationDetector.TypeReporter
- Enclosing class:
AnnotationDetector
public static interface AnnotationDetector.Reporter
Reporter is the base interface, used to report the detected annotations.
Every category of annotations (i.e. Type, Field and Method) has its own specialized
interface. This enables an efficient way of reporting the detected annotations.-
Method Summary
Modifier and TypeMethodDescriptionClass<? extends Annotation>[]Return theAnnotationclasses which must be reported (all other annotations are skipped).
-
Method Details
-
annotations
Class<? extends Annotation>[] annotations()Return theAnnotationclasses which must be reported (all other annotations are skipped).
-