Example usage for org.eclipse.jdt.core.search SearchPattern findIndexMatches

List of usage examples for org.eclipse.jdt.core.search SearchPattern findIndexMatches

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.search SearchPattern findIndexMatches.

Prototype

public void findIndexMatches(Index index, IndexQueryRequestor requestor, SearchParticipant participant,
        IJavaSearchScope scope, IProgressMonitor monitor) throws IOException 

Source Link

Document

Query a given index for matching entries.

Usage

From source file:org.eclipse.jdt.internal.core.search.matching.MatchLocator.java

License:Open Source License

/**
 * Query a given index for matching entries. Assumes the sender has opened the index and will close when finished.
 *//*from  ww w.  j  a  va 2s .c o m*/
public static void findIndexMatches(SearchPattern pattern, Index index, IndexQueryRequestor requestor,
        SearchParticipant participant, IJavaSearchScope scope, IProgressMonitor monitor) throws IOException {
    pattern.findIndexMatches(index, requestor, participant, scope, monitor);
}