Examples of BeansProject


Examples of org.springframework.ide.eclipse.beans.core.internal.model.BeansProject

  }
 
  @Test
  public void testBeansProjectXMLConfigFileRemovedWithExternalConfigSet() throws Exception {
    IProject secondProject = StsTestUtil.createPredefinedProject("beans-config-tests-2", Activator.PLUGIN_ID);
    BeansProject secondBeansProject = new BeansProject(model, secondProject);
    model.addProject(secondBeansProject);
   
    beansProject.addConfig("basic-bean-config.xml", IBeansConfig.Type.MANUAL);
    secondBeansProject.addConfig("second-bean-config.xml", IBeansConfig.Type.MANUAL);
   
    BeansConfigSet configSet = new BeansConfigSet(beansProject, "test-set", IBeansConfigSet.Type.MANUAL);
    configSet.addConfig("basic-bean-config.xml");
    configSet.addConfig("/beans-config-tests-2/second-bean-config.xml");
    beansProject.addConfigSet(configSet);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.