639N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
639N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
639N/A *
639N/A * This code is free software; you can redistribute it and/or modify it
639N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
639N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
639N/A *
639N/A * This code is distributed in the hope that it will be useful, but WITHOUT
639N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
639N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
639N/A * version 2 for more details (a copy is included in the LICENSE file that
639N/A * accompanied this code).
639N/A *
639N/A * You should have received a copy of the GNU General Public License version
639N/A * 2 along with this work; if not, write to the Free Software Foundation,
639N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
639N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
639N/A */
639N/A
639N/Apackage sun.util.calendar;
639N/A
639N/Aimport java.util.Map;
639N/Aimport java.util.HashMap;
639N/A
639N/Aclass TzIDOldMapping {
639N/A static final Map<String, String> MAP = new HashMap<String, String>();
639N/A static {
639N/A String[][] oldmap = {
639N/A { "ACT", "Australia/Darwin" },
639N/A { "AET", "Australia/Sydney" },
639N/A { "AGT", "America/Argentina/Buenos_Aires" },
639N/A { "ART", "Africa/Cairo" },
639N/A { "AST", "America/Anchorage" },
639N/A { "BET", "America/Sao_Paulo" },
639N/A { "BST", "Asia/Dhaka" },
639N/A { "CAT", "Africa/Harare" },
639N/A { "CNT", "America/St_Johns" },
639N/A { "CST", "America/Chicago" },
639N/A { "CTT", "Asia/Shanghai" },
639N/A { "EAT", "Africa/Addis_Ababa" },
639N/A { "ECT", "Europe/Paris" },
639N/A { "EST", "America/New_York" },
639N/A { "HST", "Pacific/Honolulu" },
639N/A { "IET", "America/Indianapolis" },
639N/A { "IST", "Asia/Calcutta" },
639N/A { "JST", "Asia/Tokyo" },
639N/A { "MIT", "Pacific/Apia" },
639N/A { "MST", "America/Denver" },
639N/A { "NET", "Asia/Yerevan" },
639N/A { "NST", "Pacific/Auckland" },
639N/A { "PLT", "Asia/Karachi" },
639N/A { "PNT", "America/Phoenix" },
639N/A { "PRT", "America/Puerto_Rico" },
639N/A { "PST", "America/Los_Angeles" },
639N/A { "SST", "Pacific/Guadalcanal" },
639N/A { "VST", "Asia/Saigon" },
639N/A };
639N/A for (String[] pair : oldmap) {
639N/A MAP.put(pair[0], pair[1]);
639N/A }
639N/A }
639N/A}