Example usage for java.util Locale interface-usage

List of usage examples for java.util Locale interface-usage

Introduction

In this page you can find the example usage for java.util Locale interface-usage.

Usage

From source file ch.cyberduck.core.i18n.BundleLocale.java

public class BundleLocale implements Locale {

    private final NSBundle bundle;

    @SuppressWarnings("unchecked")
    private final Map<String, String> cache = Collections.synchronizedMap(new LRUMap<String, String>(1000));

From source file ch.cyberduck.core.i18n.RegexLocale.java

public class RegexLocale implements Locale {
    private static final Logger log = Logger.getLogger(RegexLocale.class);

    private final Map<Key, String> cache = Collections.synchronizedMap(new LRUMap<Key, String>(1000));

    private final Local resources;