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

org.jresearch.commons.flexess.umi.Messages Maven / Gradle / Ivy

There is a newer version: 1.0.198
Show newest version
package org.jresearch.commons.flexess.umi;

import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;

public class Messages {

	private static final String BUNDLE_NAME = "org.jresearch.commons.flexess.umi.messages"; //$NON-NLS-1$

	private Messages() {
	}

	public static String getString(String key, Locale locale) {
		try {
			return ResourceBundle.getBundle(BUNDLE_NAME, locale).getString(key);
		} catch (MissingResourceException e) {
			return '!' + key + '!';
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy