javax.swing.JComponent.setDefaultLocale()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(126)

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

JComponent.setDefaultLocale介绍

暂无

代码示例

代码示例来源:origin: org.zaproxy/zap

/**
 * Sets the default {@code Locale} for Swing components.
 *
 * @param locale the locale that will be set as default locale for Swing components
 * @see JComponent#setDefaultLocale(Locale)
 */
private static void setDefaultViewLocale(Locale locale) {
  JComponent.setDefaultLocale(locale);
}

代码示例来源:origin: openstreetmap/osmembrane

/**
   * Sets the language to all swing components.
   * 
   * @param locale
   *            language to be set
   */
  private void setSwingLocale(Locale locale) {
    JComponent.setDefaultLocale(locale);

  }
}

代码示例来源:origin: com.fifesoft.rtext/fife.common

JComponent.setDefaultLocale(locale);
setLocale(locale);

代码示例来源:origin: nroduit/Weasis

JComponent.setDefaultLocale(locale);

代码示例来源:origin: org.codehaus.izpack/izpack-installer

/**
 * Sets the selected locale on the installation data.
 *
 * @param code the locale ISO code
 */
public void propagateLocale(String code)
{
  try
  {
    locales.setLocale(code);
    Locale newLocale = locales.getLocale();
    Locale.setDefault(newLocale);
    JComponent.setDefaultLocale(newLocale);
    SwingUtilities.updateComponentTreeUI(this);
    installData.setLocale(locales.getLocale(), locales.getISOCode());
    installData.setMessages(locales.getMessages());
    AbstractInstallDataProvider.addCustomLangpack(installData, locales);
    // Configure buttons after locale has been loaded
    installData.configureGuiButtons();
  }
  catch (Exception exception)
  {
    logger.log(Level.SEVERE, exception.getMessage(), exception);
  }
}

代码示例来源:origin: EvoSuite/evosuite

MockLocale.reset();
MockPreferences.resetPreferences();
JComponent.setDefaultLocale(Locale.getDefault());

相关文章

JComponent类方法