jdk/src/share/classes/sun/util/locale/provider/ResourceBundleBasedAdapter.java
author sherman
Tue, 12 Feb 2013 09:25:43 -0800
changeset 15658 55b829ca2334
parent 15260 7af2d7a87806
child 23010 6dadb192ad81
permissions -rw-r--r--
8007392: JSR 310: DateTime API Updates 8007520: Update date/time classes in j.util and j.sql packages 8007572: Replace existing jdk timezone data at <java.home>/lib/zi with JSR310's tzdb Summary: Integration of JSR310 Date/Time API for M7 Reviewed-by: darcy, alanb, naoto Contributed-by: scolebourne@joda.org, roger.riggs@oracle.com, masayoshi.okutsu@oracle.com, patrick.zhang@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15260
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     1
/*
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     4
 *
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    10
 *
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    15
 * accompanied this code).
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    16
 *
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    20
 *
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    23
 * questions.
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    24
 */
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    25
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    26
package sun.util.locale.provider;
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    27
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    28
import sun.util.resources.LocaleData;
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    29
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    30
/**
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    31
 * Accessor for LocaleData
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    32
 *
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    33
 * @author Naoto Sato
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    34
 */
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    35
public interface ResourceBundleBasedAdapter {
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    36
    public LocaleData getLocaleData();
7af2d7a87806 7162007: Clean up i18n related caches
naoto
parents:
diff changeset
    37
}