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

Examples of org.springframework.ide.eclipse.core.model.DefaultModelSourceLocation


    public void componentRegistered(ComponentDefinition componentDefinition) {
      // make sure that all components that come through are safe for the model
      if (componentDefinition.getSource() == null) {
        if (componentDefinition instanceof BeanComponentDefinition) {
          ((AbstractBeanDefinition) ((BeanComponentDefinition) componentDefinition).getBeanDefinition())
              .setSource(new DefaultModelSourceLocation(1, 1, resource));
        }
      }
      registerComponentDefinition(componentDefinition, elementProviders);
    }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.core.model.DefaultModelSourceLocation

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.