this.actionAnnotations = actionAnnotations;
this.actionAnnotationInstances = new ActionAnnotation<?>[actionAnnotations.length];
for (int i = 0; i < actionAnnotations.length; i++) {
Class<? extends Annotation> annotationClass = actionAnnotations[i];
actionAnnotationInstances[i] = new ActionAnnotation(annotationClass);
}
}