mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-2589 Fix some doxygen warnings.
X-SVN-Rev: 11880
This commit is contained in:
parent
f2e70a5eb4
commit
b2427b6e75
5 changed files with 14 additions and 14 deletions
icu4c/source/i18n/unicode
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
********************************************************************************
|
||||
* Copyright (C) 1997-2002, International Business Machines
|
||||
* Copyright (C) 1997-2003, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
********************************************************************************
|
||||
*
|
||||
|
@ -711,7 +711,7 @@ public:
|
|||
* Sets the calendar's time zone to be the same as the one passed in. The TimeZone
|
||||
* passed in is _not_ adopted; the client is still responsible for deleting it.
|
||||
*
|
||||
* @param value The given time zone.
|
||||
* @param zone The given time zone.
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
void setTimeZone(const TimeZone& zone);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
********************************************************************************
|
||||
* Copyright (C) 1997-2001, International Business Machines
|
||||
* Copyright (C) 1997-2003, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
********************************************************************************
|
||||
*
|
||||
|
@ -15,7 +15,7 @@
|
|||
* boolean array.
|
||||
* 4/10/97 aliu Clean up. Modified to work on AIX.
|
||||
* 8/6/97 nos Removed overloaded constructor, member var 'buffer'.
|
||||
* 07/22/98 stephen Removed operator!= (implemented in Format)
|
||||
* 07/22/98 stephen Removed operator!= (implemented in Format)
|
||||
********************************************************************************
|
||||
*/
|
||||
|
||||
|
@ -253,7 +253,7 @@ public:
|
|||
* pattern cannot be parsed, set to failure code.
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
ChoiceFormat(const UnicodeString& newPattern,
|
||||
ChoiceFormat(const UnicodeString& pattern,
|
||||
UErrorCode& status);
|
||||
|
||||
|
||||
|
@ -296,18 +296,18 @@ public:
|
|||
/**
|
||||
* Copy constructor.
|
||||
*
|
||||
* @param ChoiceFormat object to be copied from
|
||||
* @param that ChoiceFormat object to be copied from
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
ChoiceFormat(const ChoiceFormat&);
|
||||
ChoiceFormat(const ChoiceFormat& that);
|
||||
|
||||
/**
|
||||
* Assignment operator.
|
||||
*
|
||||
* @param ChoiceFormat object to be copied
|
||||
* @param that ChoiceFormat object to be copied
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
const ChoiceFormat& operator=(const ChoiceFormat&);
|
||||
const ChoiceFormat& operator=(const ChoiceFormat& that);
|
||||
|
||||
/**
|
||||
* Destructor.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
********************************************************************************
|
||||
* Copyright (C) 1997-2001, International Business Machines
|
||||
* Copyright (C) 1997-2003, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
********************************************************************************
|
||||
*
|
||||
|
@ -11,7 +11,7 @@
|
|||
* Date Name Description
|
||||
* 02/19/97 aliu Converted from java.
|
||||
* 04/01/97 aliu Added support for centuries.
|
||||
* 07/23/98 stephen JDK 1.2 sync
|
||||
* 07/23/98 stephen JDK 1.2 sync
|
||||
* 11/15/99 weiv Added support for week of year/day of week formatting
|
||||
********************************************************************************
|
||||
*/
|
||||
|
@ -572,7 +572,7 @@ public:
|
|||
|
||||
/**
|
||||
* Allows you to set the number formatter.
|
||||
* @param formatToAdopt NumberFormat object to be set.
|
||||
* @param newNumberFormat NumberFormat object to be set.
|
||||
* @stable ICU 2.0
|
||||
*/
|
||||
virtual void setNumberFormat(const NumberFormat& newNumberFormat);
|
||||
|
|
|
@ -467,7 +467,7 @@ public:
|
|||
*/
|
||||
virtual void parse(const UnicodeString& text,
|
||||
Formattable& result,
|
||||
UErrorCode& error) const;
|
||||
UErrorCode& status) const;
|
||||
|
||||
/**
|
||||
* Returns the decimal format symbols, which is generally not changed
|
||||
|
|
|
@ -163,7 +163,7 @@ typedef struct UTransPosition {
|
|||
* @param rulesLength the length of the rules, or -1 if the rules
|
||||
* are zero-terminated.
|
||||
* @param dir the desired direction
|
||||
* @param parseErr a pointer to a UParseError struct to receive the
|
||||
* @param parseError a pointer to a UParseError struct to receive the
|
||||
* details of any parsing errors. This parameter may be NULL if no
|
||||
* parsing error details are desired.
|
||||
* @param status a pointer to the UErrorCode
|
||||
|
|
Loading…
Add table
Reference in a new issue