Esempio n. 1
0
  protected void _setLang(I18nLangEnum lang) {

    Checker.notNull(lang, "Lang must not be null.");

    this.lang = lang;
    this.bundle = ResourceBundle.getBundle(BUNDLE_LOCATION, lang.getLocale());
  }
Esempio n. 2
0
 protected Translator() {
   this.bundle = ResourceBundle.getBundle(BUNDLE_LOCATION, lang.getLocale());
 }