Package org.eclipse.dltk.core.search

Examples of org.eclipse.dltk.core.search.SearchParticipant


  private SearchRequestorResultCollector executeSearch(SearchPattern searchPattern,
      SearchRequestorResultCollector requestor) throws CoreException {
    assertNotNull(searchPattern);
   
    SearchEngine engine = new SearchEngine();
    SearchParticipant defaultSearchParticipant = SearchEngine.getDefaultSearchParticipant();
    IDLTKSearchScope scope = SearchEngine.createSearchScope(searchProj);
   
    engine.search(searchPattern, array(defaultSearchParticipant), scope, requestor, new NullProgressMonitor());
    return requestor;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.core.search.SearchParticipant

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.