use of com.vaadin.data.provider.Query in project catma by forTEXT.
the class KwicPanel method getFilteredQueryResult.
public QueryResultRowArray getFilteredQueryResult() {
QueryResultRowArray result = new QueryResultRowArray();
kwicDataProvider.fetch(new Query<QueryResultRow, SerializablePredicate<QueryResultRow>>()).forEach(row -> result.add(row));
return result;
}
Aggregations