1 11 package org.eclipse.jdt.core.search; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 32 public abstract class SearchRequestor { 33 34 40 public abstract void acceptSearchMatch(SearchMatch match) throws CoreException; 41 42 51 public void beginReporting() { 52 } 54 55 64 public void endReporting() { 65 } 67 68 78 public void enterParticipant(SearchParticipant participant) { 79 } 81 82 92 public void exitParticipant(SearchParticipant participant) { 93 } 95 } 96 | Popular Tags |