CompilationUnit astRoot = ASTResolving.findParentCompilationUnit(decl);
ImportRewrite importRewrite = createImportRewrite(astRoot);
importRewrite.addImport(qualifierTypeName);
}
SingleMemberAnnotation annotation = ast.newSingleMemberAnnotation();
SimpleName typeName = ast.newSimpleName("Qualifier");
StringLiteral beanValue = ast.newStringLiteral();
// beanValue.setLiteralValue("beanName");
annotation.setTypeName(typeName);
// SimpleName beanValue = ast.newSimpleName("beanName");
annotation.setValue(beanValue);
setTrackPosition(new StringLiteralTrackedPosition(rewrite.track(beanValue)));
rewrite.replace(annotationNode, annotation, null);