diff --git a/icu4c/source/Doxyfile.in b/icu4c/source/Doxyfile.in index 600c9daccb1..771b99391ff 100644 --- a/icu4c/source/Doxyfile.in +++ b/icu4c/source/Doxyfile.in @@ -1,7 +1,7 @@ # Doxyfile 1.3.7 # ******************************************************************** # * COPYRIGHT: -# * Copyright (c) 2004-2009, International Business Machines Corporation +# * Copyright (c) 2004-2010, International Business Machines Corporation # * and others. All Rights Reserved. # ******************************************************************** @@ -9,11 +9,12 @@ # Project related configuration options #--------------------------------------------------------------------------- PROJECT_NAME = "ICU @VERSION@" -PROJECT_NUMBER = +PROJECT_NUMBER = @VERSION@ OUTPUT_DIRECTORY = doc CREATE_SUBDIRS = NO OUTPUT_LANGUAGE = English -USE_WINDOWS_ENCODING = YES +#USE_WINDOWS_ENCODING = YES +DOXYFILE_ENCODING = UTF-8 BRIEF_MEMBER_DESC = YES REPEAT_BRIEF = YES ABBREVIATE_BRIEF = @@ -25,7 +26,7 @@ STRIP_FROM_INC_PATH = SHORT_NAMES = NO JAVADOC_AUTOBRIEF = YES MULTILINE_CPP_IS_BRIEF = NO -DETAILS_AT_TOP = NO +#DETAILS_AT_TOP = NO INHERIT_DOCS = YES DISTRIBUTE_GROUP_DOC = YES TAB_SIZE = 8 @@ -215,9 +216,11 @@ TEMPLATE_RELATIONS = NO INCLUDE_GRAPH = YES INCLUDED_BY_GRAPH = YES CALL_GRAPH = NO +CALLER_GRAPH = NO GRAPHICAL_HIERARCHY = YES DOT_IMAGE_FORMAT = png DOT_PATH = +#DOT_FONTNAME = FreeSans DOTFILE_DIRS = MAX_DOT_GRAPH_WIDTH = 1024 MAX_DOT_GRAPH_HEIGHT = 1024 diff --git a/icu4c/source/common/unicode/icuplug.h b/icu4c/source/common/unicode/icuplug.h index 35d8ea46209..be886f430ae 100644 --- a/icu4c/source/common/unicode/icuplug.h +++ b/icu4c/source/common/unicode/icuplug.h @@ -70,10 +70,10 @@ *
#UBIDI_REORDER_INVERSE_FOR_NUMBERS_SPECIAL
, the Logical to Visual
- * Bidi algorithm used in Windows XP is used as an approximation of an
- * "inverse Bidi" algorithm.
+ * Bidi algorithm used in Windows XP is used as an approximation of an "inverse Bidi" algorithm.
* In all the reordering modes specifying an "inverse Bidi" algorithm diff --git a/icu4c/source/common/unicode/ubrk.h b/icu4c/source/common/unicode/ubrk.h index da79aa8ef18..e5c02970162 100644 --- a/icu4c/source/common/unicode/ubrk.h +++ b/icu4c/source/common/unicode/ubrk.h @@ -1,6 +1,6 @@ /* ****************************************************************************** -* Copyright (C) 1996-2009, International Business Machines Corporation and others. +* Copyright (C) 1996-2010, International Business Machines Corporation and others. * All Rights Reserved. ****************************************************************************** */ @@ -77,10 +77,10 @@ * object oriented C++ API with equivalent functionality is defined in the * file brkiter.h. *
- * Code snippits illustrating the use of the Break Iterator APIs + * Code snippets illustrating the use of the Break Iterator APIs * are available in the ICU User Guide, * http://icu-project.org/userguide/boundaryAnalysis.html - * and in the sample program icu/source/samples/break/break.cpp" + * and in the sample program icu/source/samples/break/break.cpp */ /** The possible types of text boundaries. @stable ICU 2.0 */ diff --git a/icu4c/source/common/unicode/uchar.h b/icu4c/source/common/unicode/uchar.h index 31fb5013a40..c528575abb6 100644 --- a/icu4c/source/common/unicode/uchar.h +++ b/icu4c/source/common/unicode/uchar.h @@ -351,7 +351,7 @@ typedef enum UProperty { Unicode normalization and combining character sequences. They have ccc=0 and do not occur in non-initial position of the canonical decomposition of any character - (like " in NFD(a-umlaut) and a Jamo T in an NFD(Hangul LVT)). + (like a-umlaut in NFD and a Jamo T in an NFD(Hangul LVT)). ICU uses this property for segmenting a string for generating a set of canonically equivalent strings, e.g. for canonical closure while processing collation tailoring rules. diff --git a/icu4c/source/common/unicode/uidna.h b/icu4c/source/common/unicode/uidna.h index 52aa6e9104e..edab2d0dcaf 100644 --- a/icu4c/source/common/unicode/uidna.h +++ b/icu4c/source/common/unicode/uidna.h @@ -1,7 +1,7 @@ /* ******************************************************************************* * - * Copyright (C) 2003-2007, International Business Machines + * Copyright (C) 2003-2010, International Business Machines * Corporation and others. All Rights Reserved. * ******************************************************************************* @@ -76,8 +76,7 @@ * This function implements the ToASCII operation as defined in the IDNA RFC. * This operation is done on single labels before sending it to something that expects * ASCII names. A label is an individual part of a domain name. Labels are usually - * separated by dots; e.g." "www.example.com" is composed of 3 labels - * "www","example", and "com". + * separated by dots; e.g." "www.example.com" is composed of 3 labels "www","example", and "com". * * * @param src Input UChar array containing label in Unicode. @@ -123,8 +122,7 @@ uidna_toASCII(const UChar* src, int32_t srcLength, * This function implements the ToUnicode operation as defined in the IDNA RFC. * This operation is done on single labels before sending it to something that expects * Unicode names. A label is an individual part of a domain name. Labels are usually - * separated by dots; for e.g." "www.example.com" is composed of 3 labels - * "www","example", and "com". + * separated by dots; for e.g." "www.example.com" is composed of 3 labels "www","example", and "com". * * @param src Input UChar array containing ASCII (ACE encoded) label. * @param srcLength Number of UChars in src, or -1 if NUL-terminated. diff --git a/icu4c/source/common/unicode/unistr.h b/icu4c/source/common/unicode/unistr.h index b3b2898c7e5..87440c76ba5 100644 --- a/icu4c/source/common/unicode/unistr.h +++ b/icu4c/source/common/unicode/unistr.h @@ -1613,7 +1613,7 @@ public: * Unpaired surrogates are replaced with U+FFFD. * Calls toUTF8(). * - * @param A standard string (or a compatible object) + * @param result A standard string (or a compatible object) * to which the UTF-8 version of the string is appended. * @return The string object. * @draft ICU 4.2 diff --git a/icu4c/source/common/unicode/uobject.h b/icu4c/source/common/unicode/uobject.h index 4a701da1fc2..d1575602ed5 100644 --- a/icu4c/source/common/unicode/uobject.h +++ b/icu4c/source/common/unicode/uobject.h @@ -1,7 +1,7 @@ /* ****************************************************************************** * -* Copyright (C) 2002-2009, International Business Machines +* Copyright (C) 2002-2010, International Business Machines * Corporation and others. All Rights Reserved. * ****************************************************************************** @@ -64,9 +64,10 @@ U_NAMESPACE_BEGIN #endif /** + * @{ * \def U_NO_THROW * Define this to define the throw() specification so - certain functions do not throw any exceptions + * certain functions do not throw any exceptions * * UMemory operator new methods should have the throw() specification * appended to them, so that the compiler adds the additional NULL check @@ -80,6 +81,8 @@ U_NAMESPACE_BEGIN #define U_NO_THROW throw() #endif +/** @} */ + /** * UMemory is the common ICU base class. * All other ICU C++ classes are derived from UMemory (starting with ICU 2.4). diff --git a/icu4c/source/common/unicode/utypes.h b/icu4c/source/common/unicode/utypes.h index eb68aa1c0f1..7ea6c9c8182 100644 --- a/icu4c/source/common/unicode/utypes.h +++ b/icu4c/source/common/unicode/utypes.h @@ -38,6 +38,16 @@ #include "unicode/uversion.h" #include "unicode/uconfig.h" +/*! + * \file + * \brief Basic definitions for ICU, for both C and C++ APIs + * + * This file defines basic types, constants, and enumerations directly or + * indirectly by including other header files, especially utf.h for the + * basic character and string definitions and umachine.h for consistent + * integer and other types. + */ + #ifdef XP_CPLUSPLUS # ifndef U_SHOW_CPLUSPLUS_API @@ -48,6 +58,7 @@ # define U_SHOW_CPLUSPLUS_API 0 #endif +/** @{ API visibility control */ /** * \def U_HIDE_DRAFT_API @@ -80,15 +91,8 @@ #include "unicode/usystem.h" #endif -/*! - * \file - * \brief Basic definitions for ICU, for both C and C++ APIs - * - * This file defines basic types, constants, and enumerations directly or - * indirectly by including other header files, especially utf.h for the - * basic character and string definitions and umachine.h for consistent - * integer and other types. - */ +/** @} */ + /*===========================================================================*/ /* char Character set family */ diff --git a/icu4c/source/i18n/unicode/locdspnm.h b/icu4c/source/i18n/unicode/locdspnm.h index b68ad1677a1..8d8a488bf52 100644 --- a/icu4c/source/i18n/unicode/locdspnm.h +++ b/icu4c/source/i18n/unicode/locdspnm.h @@ -38,8 +38,8 @@ public: virtual ~LocaleDisplayNames(); /** - * Convenience overload of {@link #createInstance(locale, - * UDialectHandling)} that specifies STANDARD dialect handling. + * Convenience overload of {@link #createInstance(const Locale& locale, UDialectHandling dialectHandling)} + * that specifies STANDARD dialect handling. * @param locale the display locale * @return a LocaleDisplayNames instance * @draft ICU 4.4 diff --git a/icu4c/source/i18n/unicode/uldnames.h b/icu4c/source/i18n/unicode/uldnames.h index a9913e24197..1e251ed795e 100644 --- a/icu4c/source/i18n/unicode/uldnames.h +++ b/icu4c/source/i18n/unicode/uldnames.h @@ -58,6 +58,7 @@ typedef struct ULocaleDisplayNames ULocaleDisplayNames; * @param locale the display locale * @param dialectHandling how to select names for locales * @return a ULocaleDisplayNames instance + * @param pErrorCode the status code * @draft ICU 4.4 */ U_DRAFT ULocaleDisplayNames * U_EXPORT2