Package com.hlcl.rql.util.as

Examples of com.hlcl.rql.util.as.StandardFieldDatePageComparator.forceDescendingOrdering()


   */
  public PageArrayList sortChangeableChildrenByDateDesc(String standardFieldDateTmpltElemName) throws RQLException {

    // create comparator and sort
    StandardFieldDatePageComparator comparator = new StandardFieldDatePageComparator(standardFieldDateTmpltElemName);
    comparator.forceDescendingOrdering();
    PageArrayList sortedChilds = getChangeableChildPages().sort(comparator);

    // update cms
    changeOrder(sortedChilds);

View Full Code Here


   */
  public PageArrayList sortChildsByDateDesc(String standardFieldDateTmpltElemName) throws RQLException {

    // create comparator and sort
    StandardFieldDatePageComparator comparator = new StandardFieldDatePageComparator(standardFieldDateTmpltElemName);
    comparator.forceDescendingOrdering();
    PageArrayList sortedChilds = getChildPages().sort(comparator);

    // update cms
    changeOrder(sortedChilds);

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.