void |
TopiaDAOImpl.computeAndAddRecordsToPager(String hql,
TopiaPagerBean pager,
Object... propertyNamesAndValues) |
void |
TopiaDAO.computeAndAddRecordsToPager(String hql,
TopiaPagerBean pager,
Object... propertyNamesAndValues)
Execute the count hql query and then synch the pager to this
result (says fill the
PagerBean.records field and then adapt
the number of pages available and the current number page).
|
<R> List<R> |
TopiaDAOImpl.findAllByQueryAndPager(Class<R> type,
String hql,
TopiaPagerBean pager,
Object... propertyNamesAndValues) |
<R> List<R> |
TopiaDAO.findAllByQueryAndPager(Class<R> type,
String hql,
TopiaPagerBean pager,
Object... propertyNamesAndValues)
Finds a page of entities R of the given select hql query using the
pager to obtain the window of entities to return.
|
List<E> |
TopiaDAOImpl.findAllByQueryAndPager(String hql,
TopiaPagerBean pager,
Object... propertyNamesAndValues) |
List<E> |
TopiaDAO.findAllByQueryAndPager(String hql,
TopiaPagerBean pager,
Object... propertyNamesAndValues)
Gets a page of entities E of the given select hql query using the
pager to obtain the window of entities to return.
|