mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 14:05:32 +00:00
ICU-3699 add getWithFallback API for CLDR tools
X-SVN-Rev: 15321
This commit is contained in:
parent
b2d2fcd9c3
commit
d52f9ef512
2 changed files with 16 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue