1/*
2 * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26/*
27 * Derived from Common Locale Data Repository data.
28 * COPYRIGHT AND PERMISSION NOTICE
29 *
30 * Copyright (C) 1991-2005 Unicode, Inc. All rights reserved.
31 * Distributed under the Terms of Use in http://www.unicode.org/copyright.html.
32 *
33 * Permission is hereby granted, free of charge, to any person obtaining a copy
34 * of the Unicode data files and any associated documentation (the "Data
35 * Files") or Unicode software and any associated documentation (the
36 * "Software") to deal in the Data Files or Software without restriction,
37 * including without limitation the rights to use, copy, modify, merge,
38 * publish, distribute, and/or sell copies of the Data Files or Software, and
39 * to permit persons to whom the Data Files or Software are furnished to do
40 * so, provided that (a) the above copyright notice(s) and this permission
41 * notice appear with all copies of the Data Files or Software, (b) both the
42 * above copyright notice(s) and this permission notice appear in associated
43 * documentation, and (c) there is clear notice in each modified Data File or
44 * in the Software as well as in the documentation associated with the Data
45 * File(s) or Software that the data or software has been modified.
46 *
47 * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
48 * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
49 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
50 * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
51 * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
52 * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
53 * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
54 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
55 * PERFORMANCE OF THE DATA FILES OR SOFTWARE.
56 *
57 * Except as contained in this notice, the name of a copyright holder shall not
58 * be used in advertising or otherwise to promote the sale, use or other
59 * dealings in these Data Files or Software without prior written
60 * authorization of the copyright holder.
61 */
62
63/*
64 * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
65 * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
66 *
67 * The original version of this source code and documentation
68 * is copyrighted and owned by Taligent, Inc., a wholly-owned
69 * subsidiary of IBM. These materials are provided under terms
70 * of a License Agreement between Taligent and Sun. This technology
71 * is protected by multiple US and International patents.
72 *
73 * This notice and attribution to Taligent may not be removed.
74 * Taligent is a registered trademark of Taligent, Inc.
75 *
76 */
77
78package sun.util.resources.ext;
79
80import java.util.Locale;
81import java.util.ResourceBundle;
82import sun.util.locale.provider.LocaleProviderAdapter;
83import sun.util.locale.provider.ResourceBundleBasedAdapter;
84import sun.util.resources.OpenListResourceBundle;
85
86public final class CurrencyNames_zh_HK extends OpenListResourceBundle {
87
88    // reparent to zh_TW for traditional Chinese names
89    public CurrencyNames_zh_HK() {
90        ResourceBundle bundle = ((ResourceBundleBasedAdapter)LocaleProviderAdapter.forJRE()).getLocaleData().getCurrencyNames(Locale.TAIWAN);
91        setParent(bundle);
92    }
93
94    @Override
95    protected Object[][] getContents() {
96        return new Object[][] {
97            {"HKD", "HK$"},
98            {"TWD", "TWD"},
99        };
100    }
101}
102