Package org.eclipse.wst.common.core.search.pattern

Examples of org.eclipse.wst.common.core.search.pattern.ComponentSearchPattern


        // check to see if the search pattern is qualified by a file location
        // if this is the case then we can use file scoping rules to prune the matches
        IFile targetFile = null;
        if (pattern instanceof ComponentSearchPattern)
        {
          ComponentSearchPattern componentSearchPattern = (ComponentSearchPattern)pattern;
          targetFile = componentSearchPattern.getFile();                                      
        }   
       
    // here we should have in scope only referenced files
    IFile[] files = scope.enclosingFiles()
    for (int i = 0; i < files.length; i++)
View Full Code Here

TOP

Related Classes of org.eclipse.wst.common.core.search.pattern.ComponentSearchPattern

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.