else if ("BEAN".equals(problemAttribute.getKey())) {
beanName = (String) problemAttribute.getValue();
}
}
if ("CLASS_NOT_FOUND".equals(problemId) && className != null) {
proposals.add(new CreateNewClassQuickFixProposal(offset, length, className, missingEndQuote, javaProject,
new HashSet<String>(), 0));
}
else if ("FIELD_NOT_FOUND".equals(problemId) && className != null && fieldName != null) {
IType type = JdtUtils.getJavaType(javaProject.getProject(), className);
if (!type.isReadOnly()) {