org.nutz.mvc.i18n.LocalizationManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nutz Show documentation
Show all versions of nutz Show documentation
Nutz, which is a collections of lightweight frameworks, each of them can be used independently
package org.nutz.mvc.i18n;
import java.util.Set;
import org.nutz.mvc.impl.NutMessageMap;
public interface LocalizationManager {
void setDefaultLocal(String local);
String getDefaultLocal();
Set getLocals();
NutMessageMap getMessageMap(String local);
String getMessage(String local, String key);
}