01: package net.xoetrope.xui.helper;
02:
03: import java.util.ResourceBundle;
04:
05: /**
06: * An interface to facilitate loading of resource bundles
07: * <p> Copyright (c) Xoetrope Ltd., 2002-2004</p>
08: * <p> $Revision: 1.1 $</p>
09: * <p> License: see License.txt</p>
10: */
11: public interface ResourceBundleLoader {
12: /**
13: * Get the named resource bundle
14: * @param the resource bundle name
15: */
16: public ResourceBundle getResourceBundle(String name);
17: }
|