Package com.fabelist.view.bean

Examples of com.fabelist.view.bean.UserBean


  }

  protected String getResource(String key) {
    Application application = getApplication();
    Locale loc = application.getDefaultLocale();
    UserBean uBean = (UserBean) getBean("userBean");
    if (uBean != null && uBean.getLocale() != null) {
      loc = new Locale(uBean.getLocale());

      application.setDefaultLocale(loc);
    }
    return getResource(application.getMessageBundle(), key, loc);
  }
View Full Code Here

TOP

Related Classes of com.fabelist.view.bean.UserBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.