Package org.opentides.bean

Examples of org.opentides.bean.Sortable


   */
  protected String appendOrderToExample(T example) {
    String clause="";
   
    if (example instanceof Sortable) {
      Sortable criteria = (Sortable) example;
      //for search list ordering
      if(!StringUtil.isEmpty(criteria.getOrderOption()) && !StringUtil.isEmpty(criteria.getOrderFlow())){
        clause="ORDER BY "+ criteria.getOrderOption() +" "+ criteria.getOrderFlow() +"";
      }
    }
    return clause;
  }
View Full Code Here

TOP

Related Classes of org.opentides.bean.Sortable

Copyright © 2018 www.massapicom. 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.