net.sf.dictccfe.and
Interface ISearchResult

All Known Implementing Classes:
DictAndActivity

public interface ISearchResult

Interface used by the search engine for returining results.

Version:
$Revision$
Author:
Daniel Stoinski

Method Summary
 void addResult(java.lang.CharSequence aResult)
          Called if the search engine returns a single result.
 void endResults()
          Called if the search engine is ready with searching.
 void showException(java.lang.Exception anExcp)
          Shows the given exception.
 void startResults()
          Called just after the search engine starts.
 

Method Detail

startResults

void startResults()
Called just after the search engine starts.


addResult

void addResult(java.lang.CharSequence aResult)
Called if the search engine returns a single result.

Parameters:
aResult - single search result.

endResults

void endResults()
Called if the search engine is ready with searching.


showException

void showException(java.lang.Exception anExcp)
Shows the given exception.

Parameters:
anExcp - the exception to show.