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>
A DigesterLoaderHandler intercept a Class visit performed by the DigesterLoader and performs the handle(Annotation, AnnotatedElement, FromAnnotationsRuleSet) method.
Since:
2.1
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(A annotation, E element, FromAnnotationsRuleSet ruleSet)
    Handles the current visited element with the related current annotation.
  • Method Details

    • 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 annotations RuleSet where providers have to be added.