Package org.jasig.portal.portlets.search

Examples of org.jasig.portal.portlets.search.DisplayNameComparator


                list.add(visiblePerson);
            }
        }
       
        // sort the list by display name
        Collections.sort(list, new DisplayNameComparator());
       
        // limit the list to a maximum of 10 returned results
        if (list.size() > maxResults) {
            list = list.subList(0, maxResults);
        }
View Full Code Here

TOP

Related Classes of org.jasig.portal.portlets.search.DisplayNameComparator

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.