Lines Matching refs:Locale

40 import java.util.Locale;
82 private Locale defaultLocale = Locale.getDefault();
85 * Maps from a Locale to a cached Map of the ResourceBundle. This is done
90 private Map<Locale, Map<String, Object>> resourceCache;
110 resourceCache = new HashMap<Locale, Map<String, Object>>();
264 public Object get(Object key, Locale l) {
272 private Object getFromResourceBundle(Object key, Locale l) {
296 private Map<String, Object> getResourceCache(Locale l) {
394 * If the value of <code>key</code> for the given <code>Locale</code>
398 * @return if the value for <code>key</code> and <code>Locale</code>
404 public Font getFont(Object key, Locale l) {
424 * If the value of <code>key</code> for the given <code>Locale</code>
428 * @return if the value for <code>key</code> and <code>Locale</code>
434 public Color getColor(Object key, Locale l) {
455 * If the value of <code>key</code> for the given <code>Locale</code>
459 * @return if the value for <code>key</code> and <code>Locale</code>
465 public Icon getIcon(Object key, Locale l) {
486 * If the value of <code>key</code> for the given <code>Locale</code>
490 * @return if the value for <code>key</code> and <code>Locale</code>
496 public Border getBorder(Object key, Locale l) {
516 * If the value of <code>key</code> for the given <code>Locale</code>
519 * @param l the desired <code>Locale</code>
521 * <code>Locale</code> is a <code>String</code>,
526 public String getString(Object key, Locale l) {
545 * If the value of <code>key</code> for the given <code>Locale</code>
549 * @return if the value for <code>key</code> and <code>Locale</code>
554 public int getInt(Object key, Locale l) {
576 * If the value of <code>key</code> for the given <code>Locale</code>
581 * @return if the value for <code>key</code> and <code>Locale</code>
586 public boolean getBoolean(Object key, Locale l) {
607 * If the value of <code>key</code> for the given <code>Locale</code>
611 * @return if the value for <code>key</code> and <code>Locale</code>
617 public Insets getInsets(Object key, Locale l) {
638 * If the value of <code>key</code> for the given <code>Locale</code>
642 * @return if the value for <code>key</code> and <code>Locale</code>
648 public Dimension getDimension(Object key, Locale l) {
903 * @see #get(Object,Locale)
906 public void setDefaultLocale( Locale l ) {
921 * @see #get(Object,Locale)
924 public Locale getDefaultLocale() {