Interface ISearchEngine<C,R>
-
- All Superinterfaces:
ISeacher<C>
- All Known Implementing Classes:
DocumentSearchEngine
public interface ISearchEngine<C,R> extends ISeacher<C>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CgetCondition()IObjectModel<R>getResultCursorModel()IObjectListModel<R>getSearchResultsModel()booleanhasNext()booleanhasPrevious()booleanhasResult()voidnext()voidprevious()voidreset()voidsearch(C condition)
-
-
-
Method Detail
-
reset
void reset()
-
next
void next()
-
previous
void previous()
-
hasPrevious
boolean hasPrevious()
-
hasNext
boolean hasNext()
-
getResultCursorModel
IObjectModel<R> getResultCursorModel()
-
hasResult
boolean hasResult()
-
getCondition
C getCondition()
-
getSearchResultsModel
IObjectListModel<R> getSearchResultsModel()
-
-