org.apache.commons.digester.annotations
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
 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 annotations RuleSet where providers have to be added.


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.