Interface DigesterLoaderHandler<A extends java.lang.annotation.Annotation,E extends java.lang.reflect.AnnotatedElement>
-
- All Known Subinterfaces:
DefaultLoaderHandler
- All Known Implementing Classes:
MethodHandler,SetPropertiesLoaderHandler
public interface DigesterLoaderHandler<A extends java.lang.annotation.Annotation,E extends java.lang.reflect.AnnotatedElement>
ADigesterLoaderHandlerintercept aClassvisit performed by theDigesterLoaderand performs thehandle(Annotation, AnnotatedElement, FromAnnotationsRuleSet)method.- Since:
- 2.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(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 annotationsRuleSetwhere providers have to be added.
-
-