}
@Override
public int getRowCount() {
if (this.queryResult == null) {
Page page = new PageImpl(1, this.getPageSize());
this.queryResult = this.repository.getResult(page);
Collection<E> collection = this.queryResult.getResult();
List<E> list = CollectionUtils.toList(collection);