blob: 0811704d809cf7fd5446ae70305f409e0f2c2161 [file] [log] [blame]
/**
*
*/
package org.eclipse.wst.jsdt.web.ui.views.contentoutline;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
/**
* @author childsb
*
*/
public class Messages {
private static final String BUNDLE_NAME = "org.eclipse.wst.jsdt.web.ui.views.contentoutline.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 + '!';
}
}
}