ICU-2661 add missing @draft ICU 2.6 to factories and members
X-SVN-Rev: 12412
This commit is contained in:
parent
c4d187a661
commit
ef866c2e45
@ -64,7 +64,7 @@ class StringEnumeration;
|
||||
typedef const void* URegistryKey;
|
||||
|
||||
/**
|
||||
* @draft ICU2.6
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
class CollatorFactory;
|
||||
|
||||
@ -925,6 +925,7 @@ public:
|
||||
* If not visible, the locales supported by this factory will not
|
||||
* be listed by getAvailableLocales.
|
||||
* @return true if the factory is visible.
|
||||
@draft ICU 2.6
|
||||
*/
|
||||
virtual UBool visible(void) const;
|
||||
|
||||
@ -933,6 +934,7 @@ public:
|
||||
* is not supported, return NULL.
|
||||
* @param loc the locale identifying the collator to be created.
|
||||
* @return a new collator if the locale is supported, otherwise NULL.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
virtual Collator* createCollator(const Locale& loc) = 0;
|
||||
|
||||
@ -957,6 +959,7 @@ public:
|
||||
* @param count output parameter for the number of locales supported by the factory
|
||||
* @param status the in/out error code
|
||||
* @return a pointer to an array of count UnicodeStrings.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
virtual const UnicodeString * getSupportedIDs(int32_t &count, UErrorCode& status) = 0;
|
||||
};
|
||||
|
@ -728,7 +728,16 @@ public:
|
||||
*/
|
||||
class U_I18N_API SimpleNumberFormatFactory : public NumberFormatFactory {
|
||||
protected:
|
||||
/*
|
||||
* True if the locale supported by this factory is visible.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
const UBool _visible;
|
||||
|
||||
/*
|
||||
* The locale supported by this factory, as a UnicodeString.
|
||||
* @draft ICU 2.6
|
||||
*/
|
||||
UnicodeString _id;
|
||||
|
||||
public:
|
||||
|
Loading…
Reference in New Issue
Block a user