Interface DigesterLoaderHandler<A extends Annotation,E extends AnnotatedElement>
-
- All Known Subinterfaces:
DefaultLoaderHandler
- All Known Implementing Classes:
MethodHandler
,SetPropertiesLoaderHandler
public interface DigesterLoaderHandler<A extends Annotation,E extends AnnotatedElement>
ADigesterLoaderHandler
intercept aClass
visit performed by theDigesterLoader
and performs thehandle(Annotation, AnnotatedElement, FromAnnotationsRuleSet)
method.- Since:
- 2.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(A annotation, E element, FromAnnotationsRuleSet ruleSet)
Handles the current visited element with the related current annotation.
-
-
-
Method Detail
-
handle
void handle(A annotation, E element, FromAnnotationsRuleSet ruleSet)
Handles the current visited element with the related current annotation.- Parameters:
annotation
- the current visited annotation.element
- the current visited element.ruleSet
- the annotationsRuleSet
where providers have to be added.
-
-