blob: a00b64fa0047eba5a3a6813372b9e5f8c91a9c13 [file] [log] [blame]
/**
*
*/
package org.eclipse.wst.jsdt.web.core.internal.project;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
/**
* @author childsb
*
*/
public class Messages {
private static final String BUNDLE_NAME = "org.eclipse.wst.jsdt.web.core.internal.project.messages"; //$NON-NLS-1$
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
private Messages() {
}
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
}
catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}