All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.tapestry.ioc.internal.util.MessagesImpl Maven / Gradle / Ivy

// Copyright 2006 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package org.apache.tapestry.ioc.internal.util;

import org.apache.tapestry.ioc.Messages;
import static org.apache.tapestry.ioc.internal.util.CollectionFactory.newCaseInsensitiveMap;
import org.apache.tapestry.ioc.util.AbstractMessages;

import java.util.Enumeration;
import java.util.Locale;
import java.util.Map;
import java.util.ResourceBundle;

/**
 * Implementation of {@link org.apache.tapestry.ioc.Messages} based around a
 * {@link java.util.ResourceBundle}.
 */
public class MessagesImpl extends AbstractMessages
{
    private final Map _properties = newCaseInsensitiveMap();

    /**
     * Finds the messages for a given Messages utility class. Strings the trailing "Messages" and
     * replaces it with "Strings" to form the base path. Loads the bundle using the default locale,
     * and the class' class loader.
     *
     * @param forClass
     * @return Messages for the class
     */
    public static Messages forClass(Class forClass)
    {
        String className = forClass.getName();
        String stringsClassName = className.replaceAll("Messages$", "Strings");

        Locale locale = Locale.getDefault();

        ResourceBundle bundle = ResourceBundle.getBundle(stringsClassName, locale, forClass.getClassLoader());

        return new MessagesImpl(locale, bundle);
    }

    public MessagesImpl(Locale locale, ResourceBundle bundle)
    {
        super(locale);

        // Our best (threadsafe) chance to determine all the available keys.
        Enumeration e = bundle.getKeys();
        while (e.hasMoreElements())
        {
            String key = e.nextElement();
            String value = bundle.getString(key);

            _properties.put(key, value);
        }
    }

    @Override
    protected String valueForKey(String key)
    {
        return _properties.get(key);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy