From eeea6d580b24e22fa15637aed31faf1e6ed05f06 Mon Sep 17 00:00:00 2001 From: George Rhoten Date: Wed, 11 Jun 2003 00:04:00 +0000 Subject: [PATCH] ICU-2589 Fix some doxygen warnings. X-SVN-Rev: 12435 --- icu4c/source/common/unicode/uniset.h | 18 ++++++------------ icu4c/source/common/unicode/uset.h | 2 ++ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/icu4c/source/common/unicode/uniset.h b/icu4c/source/common/unicode/uniset.h index d4155869e23..80762e95b25 100644 --- a/icu4c/source/common/unicode/uniset.h +++ b/icu4c/source/common/unicode/uniset.h @@ -20,10 +20,6 @@ U_NAMESPACE_BEGIN class ParsePosition; class SymbolTable; -class TransliterationRuleParser; -class TransliterationRule; -class Transliterator; -class TransliteratorParser; class UVector; class CaseEquivClass; @@ -320,7 +316,7 @@ public: * Constructs a set from the given pattern. See the class * description for the syntax of the pattern language. * @param pattern a string specifying what characters are in the set - * @param status returns IllegalArgumentException if the pattern + * @param status returns U_ILLEGAL_ARGUMENT_ERROR if the pattern * contains a syntax error. * @stable ICU 2.0 */ @@ -333,7 +329,7 @@ public: * @param pattern a string specifying what characters are in the set * @param options bitmask for options to apply to the pattern. * Valid options are USET_IGNORE_SPACE and USET_CASE_INSENSITIVE. - * @param status returns IllegalArgumentException if the pattern + * @param status returns U_ILLEGAL_ARGUMENT_ERROR if the pattern * contains a syntax error. * @internal */ @@ -434,7 +430,7 @@ public: * pattern, optionally ignoring white space. See the class * description for the syntax of the pattern language. * @param pattern a string specifying what characters are in the set - * @param status returns IllegalArgumentException if the pattern + * @param status returns U_ILLEGAL_ARGUMENT_ERROR if the pattern * contains a syntax error. * @stable ICU 2.0 */ @@ -448,7 +444,7 @@ public: * @param pattern a string specifying what characters are in the set * @param options bitmask for options to apply to the pattern. * Valid options are USET_IGNORE_SPACE and USET_CASE_INSENSITIVE. - * @param status returns IllegalArgumentException if the pattern + * @param status returns U_ILLEGAL_ARGUMENT_ERROR if the pattern * contains a syntax error. * @internal */ @@ -1125,10 +1121,8 @@ private: // RuleBasedTransliterator support //---------------------------------------------------------------- - friend class Transliterator; friend class TransliteratorParser; friend class TransliteratorIDParser; - friend class TransliterationRule; friend class RBBIRuleScanner; friend class RegexCompile; @@ -1148,7 +1142,7 @@ private: * @param varCharToSet a mapping from characters (Character objects from * varNameToChar) to UnicodeSet objects. May be null. Is only used if * varNameToChar is also non-null. - * @exception IllegalArgumentException if the pattern + * @exception U_ILLEGAL_ARGUMENT_ERROR if the pattern * contains a syntax error. */ UnicodeSet(const UnicodeString& pattern, ParsePosition& pos, @@ -1198,7 +1192,7 @@ private: * the pattern string. * @return a StringBuffer containing a pairs list for the parsed * substring of pattern - * @exception IllegalArgumentException if the parse fails. + * @exception U_ILLEGAL_ARGUMENT_ERROR if the parse fails. */ void applyPattern(const UnicodeString& pattern, ParsePosition& pos, diff --git a/icu4c/source/common/unicode/uset.h b/icu4c/source/common/unicode/uset.h index b93d54397a9..28f2fec02f7 100644 --- a/icu4c/source/common/unicode/uset.h +++ b/icu4c/source/common/unicode/uset.h @@ -135,6 +135,8 @@ uset_openPattern(const UChar* pattern, int32_t patternLength, * @param pattern a string specifying what characters are in the set * @param patternLength the length of the pattern, or -1 if null * terminated + * @param options bitmask for options to apply to the pattern. + * Valid options are USET_IGNORE_SPACE and USET_CASE_INSENSITIVE. * @param ec the error code * @draft ICU 2.4 */