Package org.apache.roller.util

Examples of org.apache.roller.util.LocaleComparator


    public static List getLocaleBeans()
    {
        if (locales == null)
        {
            locales = new ArrayList();
            TreeSet locTree = new TreeSet(new LocaleComparator());
            Locale[] localeArray = Locale.getAvailableLocales();
            for (int i=0; i<localeArray.length; i++)
            {
                locTree.add(localeArray[i]);
            }
View Full Code Here


    public static List getLocaleBeans()
    {
        if (locales == null)
        {
            locales = new ArrayList();
            TreeSet locTree = new TreeSet(new LocaleComparator());
            Locale[] localeArray = Locale.getAvailableLocales();
            for (int i=0; i<localeArray.length; i++)
            {
                locTree.add(localeArray[i]);
            }
View Full Code Here

TOP

Related Classes of org.apache.roller.util.LocaleComparator

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.