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

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


    validateBeanReference(element, context, beanName);
  }
 
  private URI getLocation(IResourceModelElement element) {
    if (element instanceof AbstractSourceModelElement) {
      AbstractSourceModelElement sourceElement = (AbstractSourceModelElement) element;
      IModelSourceLocation sourceLocation = sourceElement.getElementSourceLocation();
      if (sourceLocation instanceof XmlSourceLocation) {
        XmlSourceLocation xmlSourceLocation = (XmlSourceLocation) sourceLocation;
        Resource resource = xmlSourceLocation.getResource();
        try {
          File file = resource.getFile();
View Full Code Here

TOP

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

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.