if ( SUPPORTED_ARGS != element.getParameterTypes().length )
{
DigesterRule rule = annotation.annotationType().getAnnotation( DigesterRule.class );
rulesBinder.addError( "Methods annotated with digester annotation rule @%s must have just one argument",
rule.reflectsRule().getName() );
return;
}
Object explicitTypesObject = getAnnotationValue( annotation );
if ( explicitTypesObject == null || !explicitTypesObject.getClass().isArray()