ICU-5221 fix docs

X-SVN-Rev: 20186
This commit is contained in:
Ram Viswanadha 2006-08-29 21:55:46 +00:00
parent b6f0e69e72
commit 40de6d9299
4 changed files with 26 additions and 17 deletions

View file

@ -42,7 +42,9 @@ class StringThreadTest;
#endif
#ifndef USTRING_H
/* see ustring.h */
/**
* \ingroup ustring_ustrlen
*/
U_STABLE int32_t U_EXPORT2
u_strlen(const UChar *s);
#endif

View file

@ -70,6 +70,10 @@
* Jitterbug 2145 and its icu mailing list proposal on 2002-sep-18.
*/
/**
* \defgroup ustring_ustrlen
*/
/*@{*/
/**
* Determine the length of an array of UChar.
*
@ -79,6 +83,7 @@
*/
U_STABLE int32_t U_EXPORT2
u_strlen(const UChar *s);
/*@}*/
/**
* Count Unicode code points in the length UChar code units of the string.

View file

@ -1,5 +1,5 @@
/*
* Copyright (C) 1997-2005, International Business Machines Corporation and others. All Rights Reserved.
* Copyright (C) 1997-2006, International Business Machines Corporation and others. All Rights Reserved.
********************************************************************************
*
* File MSGFMT.H
@ -612,6 +612,7 @@ public:
* cannot be parsed, the failure code is set.
* @return the standard equivalent of the original pattern
* @since ICU 3.4
* @stable ICU 3.4
*/
static UnicodeString autoQuoteApostrophe(const UnicodeString& pattern,
UErrorCode& status);

View file

@ -998,21 +998,22 @@ public:
*/
static void U_EXPORT2 registerInstance(Transliterator* adoptedObj);
/**
* Registers an ID string as an alias of another ID string.
* That is, after calling this function, <tt>createInstance(aliasID)</tt>
* will return the same thing as <tt>createInstance(realID)</tt>.
* This is generally used to create shorter, more mnemonic aliases
* for long compound IDs.
*
* @param aliasID The new ID being registered.
* @param realID The ID that the new ID is to be an alias for.
* This can be a compound ID and can include filters and should
* refer to transliterators that have already been registered with
* the framework, although this isn't checked.
*/
static void U_EXPORT2 registerAlias(const UnicodeString& aliasID,
const UnicodeString& realID);
/**
* Registers an ID string as an alias of another ID string.
* That is, after calling this function, <tt>createInstance(aliasID)</tt>
* will return the same thing as <tt>createInstance(realID)</tt>.
* This is generally used to create shorter, more mnemonic aliases
* for long compound IDs.
*
* @param aliasID The new ID being registered.
* @param realID The ID that the new ID is to be an alias for.
* This can be a compound ID and can include filters and should
* refer to transliterators that have already been registered with
* the framework, although this isn't checked.
* @draft ICU 3.6
*/
static void U_EXPORT2 registerAlias(const UnicodeString& aliasID,
const UnicodeString& realID);
protected: