0N/A/*
2362N/A * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/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.
0N/A */
0N/A/*
0N/A *
0N/A *
0N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
0N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
0N/A *
0N/A * Portions copyright (c) 2007 Sun Microsystems, Inc.
0N/A * All Rights Reserved.
0N/A *
0N/A * The original version of this source code and documentation
0N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
0N/A * subsidiary of IBM. These materials are provided under terms
0N/A * of a License Agreement between Taligent and Sun. This technology
0N/A * is protected by multiple US and International patents.
0N/A *
0N/A * This notice and attribution to Taligent may not be removed.
0N/A * Taligent is a registered trademark of Taligent, Inc.
0N/A *
0N/A * Permission to use, copy, modify, and distribute this software
0N/A * and its documentation for NON-COMMERCIAL purposes and without
0N/A * fee is hereby granted provided that this copyright notice
0N/A * appears in all copies. Please refer to the file "copyright.html"
0N/A * for further important copyright and licensing information.
0N/A *
0N/A * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
0N/A * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
0N/A * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
0N/A * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
0N/A * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
0N/A * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
0N/A *
0N/A */
0N/A
0N/A// NOTE: This class is part of the ResourceBundleTest.
0N/A
0N/Aimport java.util.*;
0N/A
0N/Apublic class TestResource_fr extends ResourceBundle {
0N/A public TestResource_fr() {
0N/A }
0N/A
0N/A public Object handleGetObject(String key) throws MissingResourceException {
0N/A if (key.equals("Time"))
0N/A return "Time keeps on slipping...";
0N/A else if (key.equals("For"))
0N/A return "Four score and seven years ago...";
0N/A else if (key.equals("All")) {
0N/A String[] values = {
0N/A "'Twas brillig, and the slithy toves",
0N/A "Did gyre and gimble in the wabe.",
0N/A "All mimsy were the borogoves,",
0N/A "And the mome raths outgrabe."
0N/A };
0N/A return values;
0N/A }
0N/A else if (key.equals("Good"))
0N/A return new Integer(3);
0N/A else
0N/A return null;
0N/A }
0N/A
0N/A public Enumeration getKeys() {
0N/A Hashtable keys = new Hashtable();
0N/A
0N/A keys.put("Time", "Time");
0N/A keys.put("For", "For");
0N/A keys.put("All", "All");
0N/A keys.put("Good", "Good");
0N/A
0N/A Enumeration parentKeys = parent.getKeys();
0N/A while (parentKeys.hasMoreElements()) {
0N/A Object elt = parentKeys.nextElement();
0N/A keys.put(elt, elt);
0N/A }
0N/A
0N/A return keys.elements();
0N/A }
0N/A}