All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hrodberaht.i18n.locale.LocaleProfile Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
/*
 * 
 */

package org.hrodberaht.i18n.locale;

import java.util.Locale;

/**
 * Simple Java Utils
 *
 * @author Robert Alexandersson
 * @version 1.0
 * @since 1.0
 */
public class LocaleProfile {
    
    private Locale locale;

    public LocaleProfile(Locale locale) {
        this.locale = locale;
    }

    public Locale getLocale() {
        return locale;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy