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