Package com.blogger.tcuri.appserver.config

Examples of com.blogger.tcuri.appserver.config.XMLResourceBundleControl


     * @return ラベル名
     */
    public static String getLabel(String key) {
        String value = null;
        ResourceBundle bundle = ResourceBundle.getBundle("config/label",
                new XMLResourceBundleControl());
        value = bundle.getString(key);
        if (value == null) {
            return key;
        }
        return value;
View Full Code Here


     * @param key キー
     * @return メッセージ
     */
    public static String getMessage(String key) {
        ResourceBundle bundle = ResourceBundle.getBundle("config/message",
                new XMLResourceBundleControl());
        return bundle.getString(key);
    }
View Full Code Here

TOP

Related Classes of com.blogger.tcuri.appserver.config.XMLResourceBundleControl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.