Package org.cipres.treebase.service

Examples of org.cipres.treebase.service.AbstractService.findByID()


  @SuppressWarnings("unchecked")
  public void setResultIDs(Collection<Long> ids) {
    AbstractService service = getService();
    makeEmpty();
    for (Long id : ids) {
      E obj = (E) service.findByID(getResultClass(), id);
      getResults().add(obj);
    }
  }
}
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.