Package org.aspectj.org.eclipse.jdt.internal.core.search.matching

Examples of org.aspectj.org.eclipse.jdt.internal.core.search.matching.MatchLocator


   * @see SearchParticipant#locateMatches(SearchDocument[], SearchPattern, IJavaSearchScope, SearchRequestor, IProgressMonitor)
   */
  public void locateMatches(SearchDocument[] indexMatches, SearchPattern pattern,
      IJavaSearchScope scope, SearchRequestor requestor, IProgressMonitor monitor) throws CoreException {
   
    MatchLocator matchLocator =
      new MatchLocator(
        pattern,
        requestor,
        scope,
        monitor
    );

    /* eliminating false matches and locating them */
    if (monitor != null && monitor.isCanceled()) throw new OperationCanceledException();
    matchLocator.locateMatches(indexMatches);
   

    if (monitor != null && monitor.isCanceled()) throw new OperationCanceledException();
   
    matchLocator.locatePackageDeclarations(this);
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.search.matching.MatchLocator

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.