Examples of SiteNodeComparator


Examples of org.infoglue.cms.util.sorters.SiteNodeComparator

  {
    List childPages = new ArrayList();
    try
    {
      List childNodeVOList = this.nodeDeliveryController.getChildSiteNodes(getDatabase(), siteNodeId);
      Collections.sort(childNodeVOList, new SiteNodeComparator(sortAttribute, sortOrder, this));
      childPages = getPages(childNodeVOList, escapeHTML, hideUnauthorizedPages);
    }
    catch(Exception e)
    {
      logger.error("An error occurred trying to get the page childPages:" + e.getMessage(), e);
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.