Expose the locale prefix and resource list to the whole world

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@524 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Charlie Groves
2008-06-05 00:14:28 +00:00
parent 228762fc0d
commit 9d5f63d758
@@ -218,6 +218,14 @@ public class ResourceManager
} }
} }
/**
* Returns where we're currently looking for locale-specific resources.
*/
public String getLocalePrefix ()
{
return _localePrefix;
}
/** /**
* Set where we should look for locale-specific resources. * Set where we should look for locale-specific resources.
*/ */
@@ -686,7 +694,7 @@ public class ResourceManager
* means that we do not know what's available and we'll have to try all possibilities. This * means that we do not know what's available and we'll have to try all possibilities. This
* is fine for most applications. * is fine for most applications.
*/ */
protected HashSet<String> getResourceList () public HashSet<String> getResourceList ()
{ {
return null; return null;
} }