Package org.apache.roller.weblogger.pojos

Examples of org.apache.roller.weblogger.pojos.BookmarkComparator


        return wrappedCollection;
    }
   
       
    public List getBookmarks() {
        TreeSet initialCollection = new TreeSet(new BookmarkComparator());
        initialCollection.addAll(this.pojo.getBookmarks());
       
        // iterate through and wrap
        // we force the use of an ArrayList because it should be good enough to cover
        // for any Collection type we encounter.
View Full Code Here

TOP

Related Classes of org.apache.roller.weblogger.pojos.BookmarkComparator

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.