Package org.springframework.ide.eclipse.quickfix.proposals

Examples of org.springframework.ide.eclipse.quickfix.proposals.CreateNewFieldQuickFixProposal


      IType type = JdtUtils.getJavaType(javaProject.getProject(), className);
      if (!type.isReadOnly()) {
        // rename to similar field names if one exists

        // create new field
        proposals.add(new CreateNewFieldQuickFixProposal(offset, length, text, missingEndQuote, javaProject,
            className, fieldName));
      }
    }
    else if ("FIELD_NOT_STATIC".equals(problemId) && className != null && fieldName != null) {
      IType type = JdtUtils.getJavaType(javaProject.getProject(), className);
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.quickfix.proposals.CreateNewFieldQuickFixProposal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.