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

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


      Set<IBeansConfig> configs = project.getConfigs();
      for (IBeansConfig config : configs) {
        IBean bean = config.getBean(beanName);
        if (bean != null) {
          importProposals.add(new CreateImportQuickFixProposal(offset, length, missingEndQuote, bean,
              beanNode, project, file));

          Set<IBeansConfigSet> configSets = project.getConfigSets();

          for (IBeansConfigSet configSet : configSets) {
View Full Code Here


    IBeansConfig config = BeansCorePlugin.getModel().getConfig(configFile);
    IBean importBean = BeansModelUtils.getBean(parentAttr.getValue(), config);

    IBeansProject beanProject = BeansCorePlugin.getModel().getProject(project);

    CreateImportQuickFixProposal proposal = new CreateImportQuickFixProposal(offset, length, false, importBean,
        beanNode, beanProject, file);
    proposal.apply(document);
  }
View Full Code Here

TOP

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

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.