public void handle(Annotation annotation, Method element, FromAnnotationsRuleSet ruleSet) {
if (SUPPORTED_ARGS != element.getParameterTypes().length) {
DigesterRule rule = annotation.annotationType().getAnnotation(DigesterRule.class);
throw new DigesterLoadingException("Methods annotated with digester annotation rule @"
+ rule.reflectsRule().getName()
+ " must have just one argument");
}
Object explicitTypesObject = AnnotationUtils.getAnnotationValue(annotation);
if (explicitTypesObject == null