Package org.springframework.ide.eclipse.core.io

Examples of org.springframework.ide.eclipse.core.io.EclipsePathMatchingResourcePatternResolver


          // Only install Eclipse-based resource loader if enabled in project properties
          // IMPORTANT: the following block needs to stay before the w.lock()
          // as it could otherwise create a runtime deadlock
          final ResourceLoader resourceLoader;
          if (getElementParent() instanceof IBeansProject && ((IBeansProject) getElementParent()).isImportsEnabled()) {
            resourceLoader = new EclipsePathMatchingResourcePatternResolver(file.getProject(), projectIncludingClassloader);
          }
          else {
            resourceLoader = new ClassResourceFilteringPatternResolver(file.getProject(), projectIncludingClassloader);
          }
View Full Code Here

TOP

Related Classes of org.springframework.ide.eclipse.core.io.EclipsePathMatchingResourcePatternResolver

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.