01: /*
02: *
03: * JMoney - A Personal Finance Manager
04: * Copyright (c) 2007 Nigel Westbury <westbury@users.sourceforge.net>
05: *
06: *
07: * This program is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License as published by
09: * the Free Software Foundation; either version 2 of the License, or
10: * (at your option) any later version.
11: *
12: * This program is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15: * GNU General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with this program; if not, write to the Free Software
19: * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20: *
21: */
22:
23: package net.sf.jmoney.oda;
24:
25: import java.text.MessageFormat;
26: import java.util.MissingResourceException;
27: import java.util.ResourceBundle;
28:
29: /**
30: * Resource messages wrapper for the package to obtain localized message text.
31: */
32:
33: public class Messages {
34: private static final String BUNDLE_NAME = "net.sf.jmoney.oda.messages";//$NON-NLS-1$
35:
36: private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
37: .getBundle(BUNDLE_NAME);
38:
39: public static String getString(String key) {
40: try {
41: return RESOURCE_BUNDLE.getString(key);
42: } catch (MissingResourceException e) {
43: return '!' + key + '!';
44: }
45: }
46:
47: public static String getFormattedString(String key, Object[] args) {
48: return MessageFormat.format(getString(key), args);
49: }
50: }
|