KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > apps > svgbrowser > Resources


1 /*
2
3    Copyright 2001,2003 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.apps.svgbrowser;
19
20 import java.util.Locale JavaDoc;
21 import java.util.MissingResourceException JavaDoc;
22
23 import org.apache.batik.i18n.LocalizableSupport;
24 import org.apache.batik.util.gui.resource.ResourceManager;
25
26 /**
27  * This class manages the message for the Swing extensions.
28  *
29  * @author <a HREF="mailto:vhardy@apache.org">Vincent Hardy</a>
30  * @version $Id: Resources.java,v 1.6 2004/08/18 07:12:27 vhardy Exp $
31  */

32 public class Resources {
33
34     /**
35      * This class does not need to be instantiated.
36      */

37     protected Resources() { }
38
39     /**
40      * The error messages bundle class name.
41      */

42     protected final static String JavaDoc RESOURCES =
43         "org.apache.batik.apps.svgbrowser.resources.GUI";
44
45     /**
46      * The localizable support for the error messages.
47      */

48     protected static LocalizableSupport localizableSupport =
49         new LocalizableSupport(RESOURCES, Resources.class.getClassLoader());
50
51     /**
52      * The resource manager to decode messages.
53      */

54     protected static ResourceManager resourceManager =
55         new ResourceManager(localizableSupport.getResourceBundle());
56
57     /**
58      * Implements {@link org.apache.batik.i18n.Localizable#setLocale(Locale)}.
59      */

60     public static void setLocale(Locale JavaDoc l) {
61         localizableSupport.setLocale(l);
62         resourceManager = new ResourceManager(localizableSupport.getResourceBundle());
63     }
64
65     /**
66      * Implements {@link org.apache.batik.i18n.Localizable#getLocale()}.
67      */

68     public static Locale JavaDoc getLocale() {
69         return localizableSupport.getLocale();
70     }
71
72     /**
73      * Implements {@link
74      * org.apache.batik.i18n.Localizable#formatMessage(String,Object[])}.
75      */

76     public static String JavaDoc formatMessage(String JavaDoc key, Object JavaDoc[] args)
77         throws MissingResourceException JavaDoc {
78         return localizableSupport.formatMessage(key, args);
79     }
80
81     public static String JavaDoc getString(String JavaDoc key)
82         throws MissingResourceException JavaDoc {
83         return resourceManager.getString(key);
84     }
85
86     public static int getInteger(String JavaDoc key)
87         throws MissingResourceException JavaDoc {
88         return resourceManager.getInteger(key);
89     }
90
91     public static int getCharacter(String JavaDoc key)
92         throws MissingResourceException JavaDoc {
93         return resourceManager.getCharacter(key);
94     }
95 }
96
Popular Tags