Package javax.help.search
Interface SearchListener
-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
BasicSearchNavigatorUI
,SearchTOCItemTag
public interface SearchListener extends java.util.EventListener
Defines the interface for an object that listens to changes from a SearchQuery instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
itemsFound(SearchEvent e)
Tells the listener that matching SearchItems have been found.void
searchFinished(SearchEvent e)
Tells the listener that the search has finishedvoid
searchStarted(SearchEvent e)
Tells the listener that the search has started.
-
-
-
Method Detail
-
itemsFound
void itemsFound(SearchEvent e)
Tells the listener that matching SearchItems have been found.
-
searchStarted
void searchStarted(SearchEvent e)
Tells the listener that the search has started.
-
searchFinished
void searchFinished(SearchEvent e)
Tells the listener that the search has finished
-
-