1 11 package org.eclipse.search.internal.core.text; 12 13 import org.eclipse.core.resources.IResourceProxy; 14 import org.eclipse.core.runtime.CoreException; 15 import org.eclipse.core.runtime.IProgressMonitor; 16 17 public interface ITextSearchResultCollector { 18 19 23 public IProgressMonitor getProgressMonitor(); 24 25 29 public void aboutToStart() throws CoreException; 30 31 39 public void accept(IResourceProxy proxy, int start, int length) throws CoreException; 40 41 45 public void done() throws CoreException; 46 } 47 | Popular Tags |