ICU-1053 deprecate filteredCharAt

X-SVN-Rev: 5406
This commit is contained in:
Alan Liu 2001-07-31 22:43:47 +00:00
parent 84e53c8ac8
commit c224531e81
2 changed files with 4 additions and 0 deletions

View file

@ -1467,6 +1467,8 @@ const UnicodeString& Transliterator::getAvailableID(int32_t index) {
/**
* Method for subclasses to use to obtain a character in the given
* string, with filtering.
* @deprecated the new architecture provides filtering at the top
* level. This method will be removed Dec 31 2001.
*/
UChar Transliterator::filteredCharAt(const Replaceable& text, int32_t i) const {
UChar c;

View file

@ -969,6 +969,8 @@ protected:
* Method for subclasses to use to obtain a character in the given
* string, with filtering. If the character at the given offset
* is excluded by this transliterator's filter, then U+FFFE is returned.
* @deprecated the new architecture provides filtering at the top
* level. This method will be removed Dec 31 2001.
*/
UChar filteredCharAt(const Replaceable& text, int32_t i) const;