// FieldDeclaration fieldDecl =
// (FieldDeclaration) decl;
// ITypeBinding typeBinding =
// fieldDecl.getType().resolveBinding();
proposals
.add(new QualifierCompletionProposal(annotationNode, decl, javaContext));
// proposals.addAll(getMatchingBeansProposal(annotationNode,
// fieldDecl,
// typeBinding, javaContext, start,
// end
// - start));
}
else if (decl instanceof MethodDeclaration) {
// MethodDeclaration methodDecl =
// (MethodDeclaration) decl;
SingleVariableDeclaration variableDecl = getParentVariableDeclaration(annotationNode);
if (variableDecl != null) {
// ITypeBinding typeBinding =
// variableDecl.getType().resolveBinding();
proposals.add(new QualifierCompletionProposal(annotationNode, decl,
javaContext));
// proposals.addAll(getMatchingBeansProposal(annotationNode,
// methodDecl,
// typeBinding, javaContext,
// start,