⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmsmessagecontainer.java

📁 cms是开源的框架
💻 JAVA
字号:
/*
 * File   : $Source: /usr/local/cvs/opencms/src/org/opencms/i18n/CmsMessageContainer.java,v $
 * Date   : $Date: 2006/03/27 14:53:01 $
 * Version: $Revision: 1.9 $
 *
 * This library is part of OpenCms -
 * the Open Source Content Mananagement System
 *
 * Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software GmbH, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.i18n;

import java.util.Locale;

/**
 * Contains a localized message key, it's arguments and a <code>{@link I_CmsMessageBundle}</code>.<p>
 * 
 * Used for delaying the actual message lookup from the bundle to the time the message is displayed, 
 * not generated. This is used for localizing internal OpenCms messages. If a message is generated internally by OpenCms,
 * at the time no information about the context of the current user may be available. The message is therefore 
 * passed to the class generating the output, where a user context usually exists. Finally, the message is rendered
 * with the locale of the available user, or the OpenCms default locale if no user is available.<p> 
 * 
 * @author Alexander Kandzior 
 *
 * @version $Revision: 1.9 $ 
 * 
 * @since 6.0.0 
 *   
 * @see org.opencms.i18n.I_CmsMessageBundle
 */
public class CmsMessageContainer {

    /** The message arguments to use. */
    protected Object[] m_args;

    /** The OpenCms message bundle to read the message from. */
    protected I_CmsMessageBundle m_bundle;

    /** The message key to use. */
    protected String m_key;

    /**
     * Creates a new message container for a key without arguments.<p>
     * 
     * @param bundle the OpenCms message bundle to read the message from
     * @param key the message key to use
     */
    public CmsMessageContainer(I_CmsMessageBundle bundle, String key) {

        m_bundle = bundle;
        m_key = key;
    }

    /**
     * Creates a new message container.<p>
     * 
     * @param bundle the OpenCms message bundle to read the message from
     * @param key the message key to use
     * @param args the message arguments to use
     */
    public CmsMessageContainer(I_CmsMessageBundle bundle, String key, Object[] args) {

        m_bundle = bundle;
        m_key = key;
        m_args = args;
    }

    /**
     * Returns the message arguments to use.<p>
     *
     * @return the message arguments to use
     */
    public Object[] getArgs() {

        return m_args;
    }

    /**
     * Returns the message bundle used by this container.<p>
     *
     * @return the message bundle used by this container
     */
    public I_CmsMessageBundle getBundle() {

        return m_bundle;
    }

    /**
     * Returns the message key to use.<p>
     *
     * @return the message key to use
     */
    public String getKey() {

        return m_key;
    }

    /**
     * Returns the localized message described by this container for the OpenCms default locale.<p>
     * 
     * @return the localized message described by this container for the OpenCms default locale
     */
    public String key() {

        if (getBundle() == null) {
            return getKey();
        }
        return getBundle().getBundle().key(getKey(), getArgs());
    }

    /**
     * Returns the localized message described by this container for the given locale.<p>
     * 
     * @param locale the locale to use
     * @return the localized message described by this container for the given locale
     */
    public String key(Locale locale) {

        if (getBundle() == null) {
            return getKey();
        }
        return getBundle().getBundle(locale).key(getKey(), getArgs());
    }

    /**
     * @see java.lang.Object#toString()
     */
    public String toString() {

        StringBuffer result = new StringBuffer();

        result.append('[');
        result.append(this.getClass().getName());
        result.append(", bundle: ");
        result.append(getBundle().getBundleName());
        result.append(", key: ");
        result.append(getKey());
        Object[] args = getArgs();
        if (args != null) {
            for (int i = 0; i < args.length; i++) {
                result.append(", arg");
                result.append(i + 1);
                result.append(": ");
                result.append(args[i]);
            }
        }
        result.append(']');

        return result.toString();
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -