コード例 #1
0
 private static SearchResultGroup[] internalSearch(
     SearchEngine searchEngine,
     SearchPattern pattern,
     IDLTKSearchScope scope,
     CollectingSearchRequestor requestor,
     IProgressMonitor monitor,
     RefactoringStatus status)
     throws CoreException {
   searchEngine.search(
       pattern, SearchUtils.getDefaultSearchParticipants(), scope, requestor, monitor);
   return groupByCu(requestor.getResults(), status);
 }
 public void collectMatch(SearchMatch match) throws CoreException {
   super.acceptSearchMatch(match);
 }