394041424344454647
protected abstract ContactDao getContactDao(); public final Iterator iterator(int first, int count) { QueryParam qp = new QueryParam(first, count, getSort().getProperty(), getSort() .isAscending()); return getContactDao().find(qp); }
373839404142434445
} protected abstract ContactDao getContactDao(); public final Iterator iterator(int first, int count) { QueryParam qp = new QueryParam(first, count, getSort().getProperty(), getSort().isAscending()); return getContactDao().find(qp); }
4041424344454647
protected abstract ContactDao getContactDao(); public final Iterator iterator(int first, int count) { QueryParam qp = new QueryParam(first, count, getSort()); return getContactDao().find(qp); }