Package org.jampa.model.comparators

Examples of org.jampa.model.comparators.PodcastsComparator


  }
 
  public Object[] getPodcastList() {
    List<Podcast> tmpList = getPodcastListAsList();
   
    Collections.sort(tmpList, new PodcastsComparator(_podcastSortColumn, _podcastSortDirection));
    updatePodcastsPosition(tmpList);
    return tmpList.toArray(new Podcast[0]);
  }
View Full Code Here

TOP

Related Classes of org.jampa.model.comparators.PodcastsComparator

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.