Uses of Class
org.apache.commons.digester.annotations.FromAnnotationsRuleSet
-
Packages that use FromAnnotationsRuleSet Package Description org.apache.commons.digester.annotations Theannotations
package provides for Java5 Annotations meta data-based definition of rules forDigester
.org.apache.commons.digester.annotations.handlers Thehandlers
package containsDigesterLoaderHandler
implementations.org.apache.commons.digester.annotations.internal This package contains internal use only classes, users can ignore it. -
-
Uses of FromAnnotationsRuleSet in org.apache.commons.digester.annotations
Methods in org.apache.commons.digester.annotations with parameters of type FromAnnotationsRuleSet Modifier and Type Method Description void
FromAnnotationsRuleSet. addRulesProviderFrom(FromAnnotationsRuleSet ruleSet)
Add createdAnnotationRuleProvider
s created in another analysis session.void
DigesterLoader. addRulesTo(java.lang.Class<?> target, FromAnnotationsRuleSet ruleSet)
Analyzes the target class and adds theAnnotationRuleProvider
s to the existingFromAnnotationsRuleSet
.private <A extends java.lang.annotation.Annotation,E extends java.lang.reflect.AnnotatedElement,R extends Rule>
voidDigesterLoader. handle(A annotation, E element, FromAnnotationsRuleSet ruleSet)
Handles the current visited element and related annotation, invoking the right handler putting the rule provider in the rule set.private void
DigesterLoader. handle(java.lang.reflect.AnnotatedElement element, FromAnnotationsRuleSet ruleSet)
Executes an analysis for each annotation present in the element.void
DigesterLoaderHandler. handle(A annotation, E element, FromAnnotationsRuleSet ruleSet)
Handles the current visited element with the related current annotation. -
Uses of FromAnnotationsRuleSet in org.apache.commons.digester.annotations.handlers
Methods in org.apache.commons.digester.annotations.handlers with parameters of type FromAnnotationsRuleSet Modifier and Type Method Description private <A extends java.lang.annotation.Annotation,R extends Rule>
voidMethodHandler. doHandle(A methodAnnotation, java.lang.annotation.Annotation annotation, java.lang.reflect.Method method, java.lang.Class<?> type, FromAnnotationsRuleSet ruleSet)
private void
MethodHandler. doHandle(java.lang.annotation.Annotation methodAnnotation, java.lang.reflect.Method method, java.lang.Class<?> type, FromAnnotationsRuleSet ruleSet)
void
MethodHandler. handle(java.lang.annotation.Annotation annotation, java.lang.reflect.Method element, FromAnnotationsRuleSet ruleSet)
Handles the current visited element with the related current annotation.void
SetPropertiesLoaderHandler. handle(SetProperty annotation, java.lang.reflect.Field element, FromAnnotationsRuleSet ruleSet)
Handles the current visited element with the related current annotation. -
Uses of FromAnnotationsRuleSet in org.apache.commons.digester.annotations.internal
Fields in org.apache.commons.digester.annotations.internal with type parameters of type FromAnnotationsRuleSet Modifier and Type Field Description private java.util.Map<java.lang.Class<?>,FromAnnotationsRuleSet>
RuleSetCache. data
The map that implements the LRU cache.Methods in org.apache.commons.digester.annotations.internal that return FromAnnotationsRuleSet Modifier and Type Method Description FromAnnotationsRuleSet
RuleSetCache. get(java.lang.Class<?> key)
Returns the value to which the specified key is cached, or null if this cache contains no mapping for the key.Methods in org.apache.commons.digester.annotations.internal with parameters of type FromAnnotationsRuleSet Modifier and Type Method Description void
RuleSetCache. put(java.lang.Class<?> key, FromAnnotationsRuleSet value)
Associates the specified value with the specified key in this cache.
-