ICU-3699 add getWithFallback API for CLDR tools

X-SVN-Rev: 15321
This commit is contained in:
Ram Viswanadha 2004-05-15 00:16:32 +00:00
parent b2d2fcd9c3
commit d52f9ef512
2 changed files with 16 additions and 1 deletions

View file

@ -371,6 +371,16 @@ ResourceBundle ResourceBundle::get(const char* key, UErrorCode& status) const {
return res;
}
ResourceBundle ResourceBundle::getWithFallback(const char* key, UErrorCode& status){
UResourceBundle r;
ures_initStackObject(&r);
ures_getByKeyWithFallback(fResource, key, &r, &status);
ResourceBundle res(&r, status);
if(U_SUCCESS(status)){
ures_close(&r);
}
return res;
}
UnicodeString ResourceBundle::getStringEx(const char* key, UErrorCode& status) const {
int32_t len = 0;
const UChar* r = ures_getStringByKey(fResource, key, &len, &status);

View file

@ -439,7 +439,12 @@ public:
*/
const Locale
getLocale(ULocDataLocaleType type, UErrorCode &status) const;
/**
* This API implements multilevel fallback
* @internal
*/
ResourceBundle
getWithFallback(const char* key, UErrorCode& status);
/**
* ICU "poor man's RTTI", returns a UClassID for the actual class.
*