GotoMatchingBracket implementiert
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / actions / ActionMessages.java
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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.actions;
12
13 import java.text.MessageFormat;
14 import java.util.MissingResourceException;
15 import java.util.ResourceBundle;
16
17 /**
18  * Class that gives access to the action messages resource bundle.
19  */
20 public class ActionMessages {
21
22         private static final String BUNDLE_NAME= "net.sourceforge.phpdt.internal.ui.actions.ActionMessages"; //$NON-NLS-1$
23
24         private static final ResourceBundle RESOURCE_BUNDLE= ResourceBundle.getBundle(BUNDLE_NAME);
25
26         private ActionMessages() {
27                 // no instance
28         }
29
30         /**
31          * Returns the resource string associated with the given key in the resource bundle. If there isn't 
32          * any value under the given key, the key is returned.
33          *
34          * @param key the resource key
35          * @return the string
36          */     
37         public static String getString(String key) {
38                 try {
39                         return RESOURCE_BUNDLE.getString(key);
40                 } catch (MissingResourceException e) {
41                         return '!' + key + '!';
42                 }
43         }
44         
45         /**
46          * Returns the formatted resource string associated with the given key in the resource bundle. 
47          * <code>MessageFormat</code> is used to format the message. If there isn't  any value 
48          * under the given key, the key is returned.
49          *
50          * @param key the resource key
51          * @param arg the message argument
52          * @return the string
53          */     
54         public static String getFormattedString(String key, Object arg) {
55                 return getFormattedString(key, new Object[] { arg });
56         }
57         
58         /**
59          * Returns the formatted resource string associated with the given key in the resource bundle. 
60          * <code>MessageFormat</code> is used to format the message. If there isn't  any value 
61          * under the given key, the key is returned.
62          *
63          * @param key the resource key
64          * @param args the message arguments
65          * @return the string
66          */     
67         public static String getFormattedString(String key, Object[] args) {
68                 return MessageFormat.format(getString(key), args);      
69         }       
70 }