1 11 package org.eclipse.jdt.ui.search; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.core.runtime.IProgressMonitor; 15 16 30 public interface IQueryParticipant { 31 41 void search(ISearchRequestor requestor, QuerySpecification querySpecification, IProgressMonitor monitor) throws CoreException; 42 52 int estimateTicks(QuerySpecification specification); 53 59 IMatchPresentation getUIParticipant(); 60 } 61 | Popular Tags |