~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/editor/ConstructedCEditorMessages.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2013-10-03 20:30:16 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131003203016-d4ug6l0xgosasumq
Tags: 8.2.1-1
* New upstream release.
* Updated autotools documentation sources.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 *******************************************************************************/
11
11
package org.eclipse.cdt.internal.ui.editor;
12
12
 
13
 
 
14
 
import com.ibm.icu.text.MessageFormat;
15
13
import java.util.MissingResourceException;
16
14
import java.util.ResourceBundle;
17
15
 
 
16
import com.ibm.icu.text.MessageFormat;
18
17
 
19
18
public class ConstructedCEditorMessages  {
20
19
        private static final String RESOURCE_BUNDLE = "org.eclipse.cdt.internal.ui.editor.ConstructedCEditorMessages"; //$NON-NLS-1$
21
20
 
22
 
 
23
21
        private static ResourceBundle fgResourceBundle;
24
22
        static {
25
23
                try {
29
27
                }
30
28
        }
31
29
 
32
 
 
33
30
        private ConstructedCEditorMessages() {
34
31
        }
35
32
 
36
 
 
37
33
        public static ResourceBundle getResourceBundle() {
38
34
                return fgResourceBundle;
39
35
        }
61
57
        public static String getFormattedString(String key, Object arg) {
62
58
                return MessageFormat.format(getString(key), new Object[] { arg } );
63
59
        }       
64
 
 
65
60
}
66
61
 
67
62