FileDocCategorySizeDatePackage
FormatAbstractionLayerImpl.javaAPI DocphoneME MR2 API (J2ME)2897Wed May 02 18:00:46 BST 2007com.sun.j2me.global

FormatAbstractionLayerImpl.java

/*
 *   
 *
 * Copyright  1990-2007 Sun Microsystems, Inc. All Rights Reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
 * 
 * This program 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.
 * 
 * This program 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 at /legal/license.txt).
 * 
 * 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 or visit www.sun.com if you need additional
 * information or have any questions.
 */

package com.sun.j2me.global;

/**
 * This class customizes the {@link javax.microedition.global.Formatter}
 * implementation to the emulator needs.
 */
public class FormatAbstractionLayerImpl extends FormatAbstractionLayer {

    /**
     * Create instance of <code>FormatAbstractionLayerImpl</code>. This
     * constructor is necessary because of <code>Class.forName()</code> creation
     * call in {@link com.sun.j2me.global.FormatAbstractionLayer#getInstance}.
     */
    public FormatAbstractionLayerImpl() { }

    /**
     * Returns an instance of the <code>FormatterImpl</code> class,
     * which realizes most of <code>Formatter</code> methods.
     *
     * @param locale  the locale to use with this <code>Formatter</code>
     * @return the instance of the FormatterImpl
     */
    public CommonFormatter getFormatter(String locale) {
        return new FormatterImpl(locale);
    }

    /**
     *  Gets the list of the locales supported by the formatter, as an array of
     *  valid <code>microedition.locale</code> values. <p>
     *
     *  If no locales are supported, the list MUST be empty. It MUST NOT be
     *  <code>null</code>. As the value <code>null</code> is not technically a
     *  valid locale, but a special value to trigger locale-neutral formatting,
     *  it MUST NOT appear in the array.
     *
     * @return an array of strings containing the locale values
     */
    public String[] getSupportedLocales() {
        String[] locales;
        String[] res_locales =
                ResourceManager.getSupportedLocales(ResourceManager.DEVICE);
        if (res_locales[0].equals("")) {
            int len = res_locales.length - 1;
            locales = new String[len];
            System.arraycopy(res_locales, 1, locales, 0, len);
            return locales;
        }
        return res_locales;
    }
}