* @param annotationClass
*/
public static void parse(final Map annotationElements, final String annotationRepresentation,
final Class annotationClass) {
try {
ASTRoot root = PARSER.parse(annotationRepresentation);
new AnnotationVisitor(annotationElements, annotationClass).visit(root, null);
} catch (ParseException e) {
throw new WrappedRuntimeException("cannot parse annotation [" + annotationRepresentation + "]", e);
}
}