String label = "Remove <constructor-arg> to match " + getConstructorDisplay(constructor);
proposals.add(new RemoveConstructorArgQuickFixProposal(offset, length, missingEndQuote, numAdditionalParams,
beanNode, label));
label = "Change constructor " + getConstructorDisplay(constructor);
proposals.add(new AddConstructorParamQuickFixProposal(offset, length, missingEndQuote, numAdditionalParams,
constructor, label, javaProject));
return proposals;
}