org.jbundle.thin.base.util.Application.setLanguage()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.1k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中org.jbundle.thin.base.util.Application.setLanguage()方法的一些代码示例,展示了Application.setLanguage()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Application.setLanguage()方法的具体详情如下:
包路径:org.jbundle.thin.base.util.Application
类名称:Application
方法名:setLanguage

Application.setLanguage介绍

暂无

代码示例

代码示例来源:origin: com.tourgeek.thin.app/com.tourgeek.thin.app.booking

/**
 * Initialize this class.
 */
public void init(Object parent, Object obj)
{
  if (parent instanceof BaseApplet)
  { // Always
    String strThisPackage = this.getClass().getName();
    strThisPackage = strThisPackage.substring(0, strThisPackage.lastIndexOf('.') + 1);
    ((BaseApplet)parent).getApplication().setProperty(Params.RESOURCE, strThisPackage + "Tour");
    ((BaseApplet)parent).getApplication().setLanguage(null);        // Set the default language
  }
  super.init(parent, obj);
  this.addSubPanels(this);
  this.getCalendarModel().addMySelectionListener(this);
}
/**

代码示例来源:origin: org.jbundle.base/org.jbundle.base.mixed

application.setLanguage(string);

代码示例来源:origin: org.jbundle.base.screen/org.jbundle.base.screen.model

application.setLanguage(string);

相关文章