KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > i18n > ExtendedLocalizable


1 /*
2
3    Copyright 2000 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.i18n;
19
20 import java.util.Locale JavaDoc;
21 import java.util.ResourceBundle JavaDoc;
22
23 /**
24  * This interface provides much more control over internationalization
25  * than the Localizable interface.
26  *
27  * @author <a HREF="mailto:stephane@hillion.org">Stephane Hillion</a>
28  * @version $Id: ExtendedLocalizable.java,v 1.3 2004/08/18 07:14:44 vhardy Exp $
29  */

30 public interface ExtendedLocalizable extends Localizable {
31     /**
32      * Sets the group to which this object belongs.
33      */

34     void setLocaleGroup(LocaleGroup lg);
35
36     /**
37      * Returns the group to which this object belongs.
38      */

39     LocaleGroup getLocaleGroup();
40
41     /**
42      * Sets the default locale for all the instances of this class in
43      * the same LocaleGroup.
44      */

45     void setDefaultLocale(Locale JavaDoc l);
46
47     /**
48      * Gets the current default locale in the LocaleGroup.
49      */

50     Locale JavaDoc getDefaultLocale();
51
52     /**
53      * Returns the current resource bundle. Getting this object gives access
54      * to the keys in the bundle, raw string resources, arrays of raw string
55      * resources and object resources.
56      */

57     ResourceBundle JavaDoc getResourceBundle();
58 }
59
Popular Tags