01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.examples.templateeditor.editors;
11:
12: import java.text.MessageFormat;
13: import java.util.MissingResourceException;
14: import java.util.ResourceBundle;
15:
16: class TemplateMessages {
17:
18: private static final String RESOURCE_BUNDLE = TemplateMessages.class
19: .getName();
20: private static ResourceBundle fgResourceBundle = ResourceBundle
21: .getBundle(RESOURCE_BUNDLE);
22:
23: private TemplateMessages() {
24: }
25:
26: public static String getString(String key) {
27: try {
28: return fgResourceBundle.getString(key);
29: } catch (MissingResourceException e) {
30: return '!' + key + '!';
31: }
32: }
33:
34: public static String getFormattedString(String key, Object arg) {
35: return MessageFormat.format(getString(key),
36: new Object[] { arg });
37: }
38:
39: public static String getFormattedString(String key, Object[] args) {
40: return MessageFormat.format(getString(key), args);
41: }
42:
43: public static ResourceBundle getResourceBundle() {
44: return fgResourceBundle;
45: }
46: }
|