List of usage examples for javax.swing JComponent getDefaultLocale
public static Locale getDefaultLocale()
From source file:Main.java
/** * Returns the locale for the specified component, or a default one if the component * is not yet part of a container hierarchy. */// ww w . ja v a2 s. c om public static Locale getLocale(final Component component) { if (component != null) try { return component.getLocale(); } catch (IllegalComponentStateException ignore) { // Ignore. Will returns de default locale below. } return JComponent.getDefaultLocale(); }