Package org.springframework.ide.eclipse.core.internal.model

Examples of org.springframework.ide.eclipse.core.internal.model.SpringProject


  private final IFile file;

  private final SpringProject springProject;

  public BeanHelper(IDOMNode beanNode, IFile file, IProject project) {
    super(new SpringProject(SpringCore.getModel(), project), new BeanDefinitionHolder(getBeanDefinition(beanNode),
        getElementName(beanNode)));
    this.beanNode = beanNode;
    this.file = file;
    this.springProject = new SpringProject(SpringCore.getModel(), project);

    AbstractBeanDefinition beanDefinition = (AbstractBeanDefinition) getBeanDefinition();
    ConstructorArgumentValues constructorArgumentValues = new ConstructorArgumentValues();
    Set<IBeanConstructorArgument> constructorArgs = getConstructorArguments();
    int index = 0;
View Full Code Here


    this.attribute = attribute;
    this.node = node;

    this.project = file.getProject();
    this.file = file;
    this.delegateContext = new BeansValidationContext(config, new SpringProject(SpringCore.getModel(),
        file.getProject()));

    this.errorFound = false;
  }
View Full Code Here

          QuickfixProcessorFactory.NAMESPACE_ELEMENTS, false, severity, problemId, attributes);
    }

    errorFound = true;

    super.error(new SpringProject(SpringCore.getModel(), project), problemId, message, attributes);
  }
View Full Code Here

          QuickfixProcessorFactory.NAMESPACE_ELEMENTS, false, severity, problemId, attributes);
    }

    errorFound = true;

    super.info(new SpringProject(SpringCore.getModel(), project), problemId, message, attributes);
  }
View Full Code Here

          QuickfixProcessorFactory.NAMESPACE_ELEMENTS, false, severity, problemId, attributes);
    }

    errorFound = true;

    super.info(new SpringProject(SpringCore.getModel(), project), problemId, message, attributes);
  }
View Full Code Here

          QuickfixProcessorFactory.NAMESPACE_ELEMENTS, false, severity, problemId, attributes);
    }

    errorFound = true;

    super.warning(new SpringProject(SpringCore.getModel(), project), problemId, message, attributes);
  }
View Full Code Here

          QuickfixProcessorFactory.NAMESPACE_ELEMENTS, false, severity, problemId, attributes);
    }

    errorFound = true;

    super.warning(new SpringProject(SpringCore.getModel(), project), problemId, message, attributes);
  }
View Full Code Here

      BeansValidationContext context = null;
      IBeansConfig config = BeansCorePlugin.getModel().getConfig(file);
      if (config != null) {
        context = new BeansValidationContext(config,
            new SpringProject(SpringCore.getModel(), file.getProject()));
      }

      String beanName = getBeanName(node, offset, context);
      if (beanName != null) {
        try {
View Full Code Here

      return rootElement;
    }

    public void init(IResource resource) {
      ICompilationUnit cu = getCompilationUnit(resource);
      IModelElement parent = new SpringProject(SpringCore.getModel(),
          resource.getProject());
      String name = resource.getName();
      rootElement = new CompilationUnit(cu, parent, name);
    }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.core.internal.model.SpringProject

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.