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