for (Annotation annotation : getMethodAnnotations(clazz, method)) {
if (!builder.isMetaPropertyApplicable()) {
// Save unnecessary reflection
break;
}
AnnotationProvider annotationProvider = new AnnotationProvider(annotation.annotationType()
.getName());
for (Method annotationMethod : getAnnotationMethods(clazz, method, annotation.annotationType())) {
try {
annotationProvider
.setValue(annotationMethod.getName(), annotationMethod.invoke(annotation));
} catch (IllegalArgumentException e) {
throw new AnnotationNotFoundException("Annotation: "
+ annotation.annotationType().getName(), e);
} catch (IllegalAccessException e) {