325N/A/*
325N/A * Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
325N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
325N/A *
325N/A * This code is free software; you can redistribute it and/or modify it
325N/A * under the terms of the GNU General Public License version 2 only, as
325N/A * published by the Free Software Foundation. Oracle designates this
325N/A * particular file as subject to the "Classpath" exception as provided
325N/A * by Oracle in the LICENSE file that accompanied this code.
325N/A *
325N/A * This code is distributed in the hope that it will be useful, but WITHOUT
325N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
325N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
325N/A * version 2 for more details (a copy is included in the LICENSE file that
325N/A * accompanied this code).
325N/A *
325N/A * You should have received a copy of the GNU General Public License version
325N/A * 2 along with this work; if not, write to the Free Software Foundation,
325N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
325N/A *
325N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
325N/A * or visit www.oracle.com if you need additional information or have any
325N/A * questions.
325N/A *
325N/A * THIS FILE WAS MODIFIED BY SUN MICROSYSTEMS, INC.
325N/A */
325N/A
325N/A/*
325N/A *
325N/A * This code is subject to the freebxml License, Version 1.1
325N/A *
325N/A * Copyright (c) 2001 - 2005 freebxml.org. All rights reserved.
325N/A *
325N/A * $Header: /zpool01/javanet/scm/svn/tmp/cvs2svn/fi/FastInfoset/src/com/sun/xml/internal/fastinfoset/AbstractResourceBundle.java,v 1.3.2.4 2009-05-13 08:53:01 oleksiys Exp $
325N/A */
325N/Apackage com.sun.xml.internal.fastinfoset;
325N/A
325N/Aimport java.text.MessageFormat;
325N/Aimport java.util.Enumeration;
325N/Aimport java.util.Locale;
325N/Aimport java.util.ResourceBundle;
325N/A
325N/A
325N/A/**
325N/A * This class contains methods common to all *ResourceBundle classes
325N/A *
325N/A * @author FastInfoset team
325N/A */
325N/Apublic abstract class AbstractResourceBundle extends ResourceBundle {
325N/A
325N/A public static final String LOCALE = "com.sun.xml.internal.fastinfoset.locale";
325N/A
325N/A /**
325N/A * Gets 'key' from ResourceBundle and format mesage using 'args'.
325N/A *
325N/A * @param key String key for message.
325N/A * @param args Array of arguments for message.
325N/A * @return String formatted message.
325N/A */
325N/A public String getString(String key, Object args[]) {
325N/A String pattern = getBundle().getString(key);
325N/A return MessageFormat.format(pattern, args);
325N/A }
325N/A
325N/A /**
325N/A * Parse a locale string, return corresponding Locale instance.
325N/A *
325N/A * @param localeString
325N/A * Name for the locale of interest. If null, use VM default locale.
325N/A * @return New Locale instance.
325N/A */
325N/A public static Locale parseLocale(String localeString) {
325N/A Locale locale = null;
325N/A if (localeString == null) {
325N/A locale = Locale.getDefault();
325N/A } else {
325N/A try {
325N/A String[] args = localeString.split("_");
325N/A if (args.length == 1) {
325N/A locale = new Locale(args[0]);
325N/A } else if (args.length == 2) {
325N/A locale = new Locale(args[0], args[1]);
325N/A } else if (args.length == 3) {
325N/A locale = new Locale(args[0], args[1], args[2]);
325N/A }
325N/A } catch (Throwable t) {
325N/A locale = Locale.getDefault();
325N/A }
325N/A }
325N/A return locale;
325N/A }
325N/A
325N/A /**
325N/A * Subclasses of this class must implement this method so that the
325N/A * correct resource bundle is passed to methods in this class
325N/A *
325N/A * @return
325N/A * A java.util.ResourceBundle from the subsclass. Methods in this class
325N/A * will use this reference.
325N/A */
325N/A public abstract ResourceBundle getBundle();
325N/A
325N/A
325N/A /**
325N/A * Since we are changing the ResourceBundle extension point, must
325N/A * implement handleGetObject() using delegate getBundle(). Uses
325N/A * getObject() call to work around protected access to
325N/A * ResourceBundle.handleGetObject(). Happily, this means parent tree
325N/A * of delegate bundle is searched for a match.
325N/A *
325N/A * Implements java.util.ResourceBundle.handleGetObject; inherits that
325N/A * javadoc information.
325N/A *
325N/A * @see java.util.ResourceBundle#handleGetObject(String)
325N/A */
325N/A protected Object handleGetObject(String key) {
325N/A return getBundle().getObject(key);
325N/A }
325N/A
325N/A /**
325N/A * Since we are changing the ResourceBundle extension point, must
325N/A * implement getKeys() using delegate getBundle().
325N/A *
325N/A * Implements java.util.ResourceBundle.getKeys; inherits that javadoc
325N/A * information.
325N/A *
325N/A * @see java.util.ResourceBundle#getKeys()
325N/A */
325N/A public final Enumeration getKeys() {
325N/A return getBundle().getKeys();
325N/A }
325N/A}