}
protected HandlerProcessingResult processAnnotation(AnnotationInfo ainfo,
EjbContext[] ejbContexts) throws AnnotationProcessorException {
Schedules annotation = (Schedules) ainfo.getAnnotation();
Schedule[] schAnnotations = annotation.value();
List<HandlerProcessingResult> results = new ArrayList<HandlerProcessingResult>();
for(Schedule sch : schAnnotations) {
results.add(processSchedule(sch, ainfo, ejbContexts));
}