continue;
}
constraintValidatorClass = (Class<? extends ValueConstraintValidator>) getConstraintValidatorClass(
memberAnnotationTypeElement, ValueConstraint.class);
ValueConstraintValidator validator = getConstraintValidator(
constraintValidatorClass,
valueConstraintValidatorMap);
if (validator != null) {
for (Element e : roundEnv
.getElementsAnnotatedWith(annotationType)) {
AnnotationMirror elementAnnotationMirror = AnnotationProcessingUtil
.findAnnotationMirror(processingEnv, e,
annotationType);
Object actualValue = AnnotationProcessingUtil
.getAnnotationElementValue(
processingEnv,
elementAnnotationMirror,
annotationMember.getSimpleName()
.toString()).getValue();
validator.validate(processingEnv, roundEnv,
annotationType, annotationMirror,
annotationMember, e, actualValue);
}
}
}