public static void addLiteralMemberValuePair(NormalAnnotation annotation, String name, String value) {
AST ast = annotation.getAST();
List list = (List) annotation.getStructuralProperty(NormalAnnotation.VALUES_PROPERTY);
MemberValuePair newValuePair = ast.newMemberValuePair();
newValuePair.setName(ast.newSimpleName(name));
newValuePair.setValue(ASTTools.newStringLiteral(ast, value));
list.add(newValuePair);
}
public static MarkerAnnotation addAnnotation(BodyDeclaration bodyDeclaration, String annotationName) {