Package org.atmosphere.util.annotation
Interface AnnotationDetector.FieldReporter
-
- All Superinterfaces:
AnnotationDetector.Reporter
- Enclosing class:
- AnnotationDetector
public static interface AnnotationDetector.FieldReporter extends AnnotationDetector.Reporter
AReporterfor field annotations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreportFieldAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotation, java.lang.String className, java.lang.String fieldName)This call back method is used to report an field levelAnnotation.-
Methods inherited from interface org.atmosphere.util.annotation.AnnotationDetector.Reporter
annotations
-
-
-
-
Method Detail
-
reportFieldAnnotation
void reportFieldAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotation, java.lang.String className, java.lang.String fieldName)This call back method is used to report an field levelAnnotation. OnlyAnnotations, specified byAnnotationDetector.Reporter.annotations()are reported!
-
-