Package net.sf.archimede.jsf.view

Examples of net.sf.archimede.jsf.view.ContentSortComparator


        return "exploration_folder_list";
    }
   
    public String sortResultsAsc() {
        List resultsList = (List) this.folders.getWrappedData();
        Collections.sort(resultsList, new ContentSortComparator());
        return "exploration_folder_list";
    }
View Full Code Here


        return "workspace_content_collection";
    }
   
    public String sortResultsAsc() {
        List resultsList = (List) this.collections.getWrappedData();
        Collections.sort(resultsList, new ContentSortComparator());
        return "workspace_content_collection";
    }
View Full Code Here

     *
     * @return
     */
    public String sortResultsAsc() {
        List resultsList = (List) this.results.getWrappedData();
        Collections.sort(resultsList, new ContentSortComparator());

        return "exploration_search_results";
    }
View Full Code Here

        return "exploration_collection_list";
    }
   
    public String sortResultsAsc() {
        List resultsList = (List) this.collections.getWrappedData();
        Collections.sort(resultsList, new ContentSortComparator());
        return "exploration_collection_list";
    }
View Full Code Here

TOP

Related Classes of net.sf.archimede.jsf.view.ContentSortComparator

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.