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

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


      }
    }
    else if ("FIELD_NOT_STATIC".equals(problemId) && className != null && fieldName != null) {
      IType type = JdtUtils.getJavaType(javaProject.getProject(), className);
      if (!type.isReadOnly()) {
        proposals.add(new AddStaticToFieldQuickFixProposal(offset, length, missingEndQuote, javaProject,
            className, fieldName));
      }
    }
    else if ("METHOD_NOT_FOUND".equals(problemId) && className != null && methodName != null) {
      ICompletionProposal proposal = QuickfixUtils.getNewMethodQuickFixProposal(methodName, "Object",
View Full Code Here

TOP

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

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.