1 /*******************************************************************************
2 * Copyright (c) 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.actions;
13 import java.text.MessageFormat;
14 import java.util.MissingResourceException;
15 import java.util.ResourceBundle;
18 * Class that gives access to the action messages resource bundle.
20 public class ActionMessages {
22 private static final String BUNDLE_NAME = "net.sourceforge.phpdt.internal.ui.actions.ActionMessages"; //$NON-NLS-1$
24 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
25 .getBundle(BUNDLE_NAME);
27 private ActionMessages() {
32 * Returns the resource string associated with the given key in the resource
33 * bundle. If there isn't any value under the given key, the key is
40 public static String getString(String key) {
42 return RESOURCE_BUNDLE.getString(key);
43 } catch (MissingResourceException e) {
44 return '!' + key + '!';
49 * Returns the resource bundle managed by the receiver.
51 * @return the resource bundle
54 public static ResourceBundle getResourceBundle() {
55 return RESOURCE_BUNDLE;
59 * Returns the formatted resource string associated with the given key in
60 * the resource bundle. <code>MessageFormat</code> is used to format the
61 * message. If there isn't any value under the given key, the key is
67 * the message argument
70 public static String getFormattedString(String key, Object arg) {
71 return getFormattedString(key, new Object[] { arg });
75 * Returns the formatted resource string associated with the given key in
76 * the resource bundle. <code>MessageFormat</code> is used to format the
77 * message. If there isn't any value under the given key, the key is
83 * the message arguments
86 public static String getFormattedString(String key, Object[] args) {
87 return MessageFormat.format(getString(key), args);