コード例 #1
0
ファイル: Translator.java プロジェクト: Mhyrdin/navisuDom
  protected void _setLang(I18nLangEnum lang) {

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

    this.lang = lang;
    this.bundle = ResourceBundle.getBundle(BUNDLE_LOCATION, lang.getLocale());
  }
コード例 #2
0
ファイル: Translator.java プロジェクト: Mhyrdin/navisuDom
 protected Translator() {
   this.bundle = ResourceBundle.getBundle(BUNDLE_LOCATION, lang.getLocale());
 }