Package com.anasoft.os.daofusion.criteria

Examples of com.anasoft.os.daofusion.criteria.SortCriterion


   */
  private SortCriterion getSortCriterion(FilterAndSortCriteria clientSideCriteria) {
    boolean sortAscending = clientSideCriteria.getSortAscending() != null ? clientSideCriteria.getSortAscending().booleanValue() : false;
    boolean ignoreCase = clientSideCriteria.getIgnoreCase() != null ? clientSideCriteria.getIgnoreCase().booleanValue() : false;
   
    return new SortCriterion(getAssociationPath(),
        getTargetPropertyName(),
        sortAscending,
        ignoreCase);
  }
View Full Code Here

TOP

Related Classes of com.anasoft.os.daofusion.criteria.SortCriterion

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.