Package com.inmethod.grid.examples.contact

Examples of com.inmethod.grid.examples.contact.ContactsDatabase.find()


   
    // since we don't know the actual item count we try to load one item more than requested
    // if there are n+1 items we know there will be something on the next page
   
    // get the actual items
    List<Contact> resultList = database.find(query.getFrom(), query.getCount() + 1, sortProperty, sortAsc);
    result.setItems(resultList.iterator());
   
    if (resultList.size() == query.getCount() + 1) {
      // if we managed to load n + 1 items (thus there will be another page)
      result.setTotalCount(IQueryResult.MORE_ITEMS);
View Full Code Here


   
    // determine the total count
    result.setTotalCount(database.getCount());
   
    // get the actual items
    List<Contact> resultList = database.find(query.getFrom(), query.getCount(), sortProperty, sortAsc);
    result.setItems(resultList.iterator());
   
  }

  /**
 
View Full Code Here

    // since we don't know the actual item count we try to load one item more than requested
    // if there are n+1 items we know there will be something on the next page

    // get the actual items
    List<Contact> resultList = database.find(query.getFrom(), query.getCount() + 1,
      sortProperty, sortAsc);
    result.setItems(resultList.iterator());

    if (resultList.size() == query.getCount() + 1)
    {
View Full Code Here

    // determine the total count
    result.setTotalCount(database.getCount());

    // get the actual items
    List<Contact> resultList = database.find(query.getFrom(), query.getCount(), sortProperty,
      sortAsc);
    result.setItems(resultList.iterator());

  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.