public ICompletionProposal[] computeQuickAssistProposals(IQuickAssistInvocationContext invocationContext) {
IType type = JdtUtils.getJavaType(method.getJavaProject().getProject(), className);
if (!type.isReadOnly() && method != null) {
return new ICompletionProposal[] { new RemoveDeprecatedQuickFixProposal(offset, length, missingEndQuote,
className, methodName, method) };
}
return new ICompletionProposal[0];
}