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

io.github.lc.oss.commons.l10n.UserLocale Maven / Gradle / Ivy

package io.github.lc.oss.commons.l10n;

import java.util.Locale;

public class UserLocale {
    private Locale locale;

    public UserLocale() {
        this.locale = Locale.ENGLISH;
    }

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

    public Locale getLocale() {
        return this.locale;
    }

    public void setLocale(Locale locale) {
        this.locale = locale;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy