Home | History | Annotate | Download | only in ahat

Lines Matching refs:query

32   private Query mQuery;
38 * @param id - the name of the query parameter key that should hold
40 * @param query - The query for the current page. This is required so the
46 public SubsetSelector(Query query, String id, List<T> elements) {
47 mQuery = query;
49 mLimit = getSelectedLimit(query, id, elements.size());
65 * @param query the current page query
69 private static int getSelectedLimit(Query query, String id, int size) {
70 String value = query.get(id, null);