]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/unicode/utext.h
ICU-531.48.tar.gz
[apple/icu.git] / icuSources / common / unicode / utext.h
index 5918bf504d184aad7ff68efe07ae25b0797ae847..d431913d35b31e87719c26479ab2215e64ff339e 100644 (file)
@@ -1,7 +1,7 @@
 /*
 *******************************************************************************
 *
-*   Copyright (C) 2004-2006, International Business Machines
+*   Copyright (C) 2004-2012, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 *******************************************************************************
 
 
 #include "unicode/utypes.h"
-#ifdef XP_CPLUSPLUS
+#include "unicode/uchar.h"
+#if U_SHOW_CPLUSPLUS_API
+#include "unicode/localpointer.h"
 #include "unicode/rep.h"
 #include "unicode/unistr.h"
 #include "unicode/chariter.h"
 U_CDECL_BEGIN
 
 struct UText;
-typedef struct UText UText; /**< C typedef for struct UText. @draft ICU 3.6 */
+typedef struct UText UText; /**< C typedef for struct UText. @stable ICU 3.6 */
 
 
 /***************************************************************************************
@@ -174,11 +176,29 @@ typedef struct UText UText; /**< C typedef for struct UText. @draft ICU 3.6 */
   *            returned by this function, and may be safely used again in
   *            a subsequent utext_open.
   *
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
-U_DRAFT UText * U_EXPORT2
+U_STABLE UText * U_EXPORT2
 utext_close(UText *ut);
 
+#if U_SHOW_CPLUSPLUS_API
+
+U_NAMESPACE_BEGIN
+
+/**
+ * \class LocalUTextPointer
+ * "Smart pointer" class, closes a UText via utext_close().
+ * For most methods see the LocalPointerBase base class.
+ *
+ * @see LocalPointerBase
+ * @see LocalPointer
+ * @stable ICU 4.4
+ */
+U_DEFINE_LOCAL_OPEN_POINTER(LocalUTextPointer, UText, utext_close);
+
+U_NAMESPACE_END
+
+#endif
 
 /**
  * Open a read-only UText implementation for UTF-8 strings.
@@ -199,9 +219,9 @@ utext_close(UText *ut);
  * @param status Errors are returned here.
  * @return       A pointer to the UText.  If a pre-allocated UText was provided, it
  *               will always be used and returned.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
+U_STABLE UText * U_EXPORT2
 utext_openUTF8(UText *ut, const char *s, int64_t length, UErrorCode *status);
 
 
@@ -217,13 +237,13 @@ utext_openUTF8(UText *ut, const char *s, int64_t length, UErrorCode *status);
  * @param status Errors are returned here.
  * @return       A pointer to the UText.  If a pre-allocated UText was provided, it
  *               will always be used and returned.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
+U_STABLE UText * U_EXPORT2
 utext_openUChars(UText *ut, const UChar *s, int64_t length, UErrorCode *status);
 
 
-#ifdef XP_CPLUSPLUS
+#if U_SHOW_CPLUSPLUS_API
 /**
  * Open a writable UText for a non-const UnicodeString. 
  * 
@@ -234,10 +254,10 @@ utext_openUChars(UText *ut, const UChar *s, int64_t length, UErrorCode *status);
  * @param status Errors are returned here.
  * @return        Pointer to the UText.  If a UText was supplied as input, this
  *                 will always be used and returned.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
-utext_openUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
+U_STABLE UText * U_EXPORT2
+utext_openUnicodeString(UText *ut, icu::UnicodeString *s, UErrorCode *status);
 
 
 /**
@@ -250,10 +270,10 @@ utext_openUnicodeString(UText *ut, UnicodeString *s, UErrorCode *status);
  * @param status Errors are returned here.
  * @return       Pointer to the UText.  If a UText was supplied as input, this
  *               will always be used and returned.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
-utext_openConstUnicodeString(UText *ut, const UnicodeString *s, UErrorCode *status);
+U_STABLE UText * U_EXPORT2
+utext_openConstUnicodeString(UText *ut, const icu::UnicodeString *s, UErrorCode *status);
 
 
 /**
@@ -266,10 +286,10 @@ utext_openConstUnicodeString(UText *ut, const UnicodeString *s, UErrorCode *stat
  * @return       Pointer to the UText.  If a UText was supplied as input, this
  *               will always be used and returned.
  * @see Replaceable
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
-utext_openReplaceable(UText *ut, Replaceable *rep, UErrorCode *status);
+U_STABLE UText * U_EXPORT2
+utext_openReplaceable(UText *ut, icu::Replaceable *rep, UErrorCode *status);
 
 /**
  * Open a  UText implementation over an ICU CharacterIterator.
@@ -281,10 +301,10 @@ utext_openReplaceable(UText *ut, Replaceable *rep, UErrorCode *status);
  * @return       Pointer to the UText.  If a UText was supplied as input, this
  *               will always be used and returned.
  * @see Replaceable
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
-utext_openCharacterIterator(UText *ut, CharacterIterator *ic, UErrorCode *status);
+U_STABLE UText * U_EXPORT2
+utext_openCharacterIterator(UText *ut, icu::CharacterIterator *ci, UErrorCode *status);
 
 #endif
 
@@ -344,9 +364,9 @@ utext_openCharacterIterator(UText *ut, CharacterIterator *ic, UErrorCode *status
   *                will be returned if the text provider is unable to clone the
   *                original text.
   *  @return       The newly created clone, or NULL if the clone operation failed.
-  *  @draft ICU 3.4
+  *  @stable ICU 3.4
   */
-U_DRAFT UText * U_EXPORT2
+U_STABLE UText * U_EXPORT2
 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status);
 
 
@@ -359,9 +379,9 @@ utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCod
   *  @param a   The first of the two UTexts to compare.
   *  @param b   The other UText to be compared.
   *  @return    TRUE if the two UTexts are equal.
-  *  @draft ICU 3.6
+  *  @stable ICU 3.6
   */
-U_DRAFT UBool U_EXPORT2
+U_STABLE UBool U_EXPORT2
 utext_equals(const UText *a, const UText *b);
 
 
@@ -380,9 +400,9 @@ utext_equals(const UText *a, const UText *b);
   * @param ut  the text to be accessed.
   * @return the length of the text, expressed in native units.
   *
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
-U_DRAFT int64_t U_EXPORT2
+U_STABLE int64_t U_EXPORT2
 utext_nativeLength(UText *ut);
 
 /**
@@ -396,9 +416,9 @@ utext_nativeLength(UText *ut);
  *
  * @param ut the text to be accessed.
  * @return TRUE if determining the length of the text could be time consuming.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UBool U_EXPORT2
+U_STABLE UBool U_EXPORT2
 utext_isLengthExpensive(const UText *ut);
 
 /**
@@ -424,9 +444,9 @@ utext_isLengthExpensive(const UText *ut);
  *        to other than the first unit of a multi-unit character, it will be adjusted
  *        to the start of the character.
  * @return the code point at the specified index.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UChar32 U_EXPORT2
+U_STABLE UChar32 U_EXPORT2
 utext_char32At(UText *ut, int64_t nativeIndex);
 
 
@@ -438,9 +458,9 @@ utext_char32At(UText *ut, int64_t nativeIndex);
  *
  * @param ut the text to be accessed.
  * @return the Unicode code point at the current iterator position.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UChar32 U_EXPORT2
+U_STABLE UChar32 U_EXPORT2
 utext_current32(UText *ut);
 
 
@@ -460,9 +480,9 @@ utext_current32(UText *ut);
  * @param ut the text to be accessed.
  * @return the Unicode code point at the iteration position.
  * @see UTEXT_NEXT32
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UChar32 U_EXPORT2
+U_STABLE UChar32 U_EXPORT2
 utext_next32(UText *ut);
 
 
@@ -481,9 +501,9 @@ utext_next32(UText *ut);
  *  @return the previous UChar32 code point, or U_SENTINEL (-1) 
  *          if the iteration has reached the start of the text.
  *  @see UTEXT_PREVIOUS32
- *  @draft ICU 3.4
+ *  @stable ICU 3.4
  */
-U_DRAFT UChar32 U_EXPORT2
+U_STABLE UChar32 U_EXPORT2
 utext_previous32(UText *ut);
 
 
@@ -503,9 +523,9 @@ utext_previous32(UText *ut);
   *  @param nativeIndex Iteration index, in the native units of the text provider.
   *  @return Code point which starts at or before index,
   *         or U_SENTINEL (-1) if it is out of bounds.
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
-U_DRAFT UChar32 U_EXPORT2
+U_STABLE UChar32 U_EXPORT2
 utext_next32From(UText *ut, int64_t nativeIndex);
 
 
@@ -523,9 +543,9 @@ utext_next32From(UText *ut, int64_t nativeIndex);
   * @return Code point preceding the one at the initial index,
   *         or U_SENTINEL (-1) if it is out of bounds.
   *
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
-U_DRAFT UChar32 U_EXPORT2
+U_STABLE UChar32 U_EXPORT2
 utext_previous32From(UText *ut, int64_t nativeIndex);
 
 /**
@@ -538,9 +558,9 @@ utext_previous32From(UText *ut, int64_t nativeIndex);
   *
   * @param ut the text to be accessed.
   * @return the current index position, in the native units of the text provider.
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
-U_DRAFT int64_t U_EXPORT2
+U_STABLE int64_t U_EXPORT2
 utext_getNativeIndex(const UText *ut);
 
 /**
@@ -564,9 +584,9 @@ utext_getNativeIndex(const UText *ut);
  *
  * @param ut the text to be accessed.
  * @param nativeIndex the native unit index of the new iteration position.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT void U_EXPORT2
+U_STABLE void U_EXPORT2
 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
 
 /**
@@ -583,9 +603,9 @@ utext_setNativeIndex(UText *ut, int64_t nativeIndex);
  * @param delta the signed number of code points to move the iteration position.
  * @return TRUE if the position could be moved the requested number of positions while
  *              staying within the range [0 - text length].
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UBool U_EXPORT2
+U_STABLE UBool U_EXPORT2
 utext_moveIndex32(UText *ut, int32_t delta);
 
 /**
@@ -608,9 +628,9 @@ utext_moveIndex32(UText *ut, int32_t delta);
  * @param ut the text to be accessed
  * @return the native index of the character preceeding the current index position,
  *         or zero if the current position is at the start of the text.
- * @draft ICU 3.6
+ * @stable ICU 3.6
  */
-U_DRAFT int64_t U_EXPORT2
+U_STABLE int64_t U_EXPORT2
 utext_getPreviousNativeIndex(UText *ut); 
 
 
@@ -646,16 +666,16 @@ utext_getPreviousNativeIndex(UText *ut);
  *         buffer was too small.  Returns number of UChars for preflighting.
  * @return Number of UChars in the data to be extracted.  Does not include a trailing NUL.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT int32_t U_EXPORT2
+U_STABLE int32_t U_EXPORT2
 utext_extract(UText *ut,
              int64_t nativeStart, int64_t nativeLimit,
              UChar *dest, int32_t destCapacity,
              UErrorCode *status);
 
 
-#ifndef U_HIDE_DRAFT_API
+
 /************************************************************************************
  *
  *  #define inline versions of selected performance-critical text access functions
@@ -671,6 +691,21 @@ utext_extract(UText *ut,
  *
  ************************************************************************************/
 
+#ifndef U_HIDE_INTERNAL_API
+/**
+ * inline version of utext_current32(), for performance-critical situations.
+ *
+ * Get the code point at the current iteration position of the UText.
+ * Returns U_SENTINEL (-1) if the position is at the end of the
+ * text.
+ *
+ * @internal ICU 4.4 technology preview
+ */
+#define UTEXT_CURRENT32(ut)  \
+    ((ut)->chunkOffset < (ut)->chunkLength && ((ut)->chunkContents)[(ut)->chunkOffset]<0xd800 ? \
+    ((ut)->chunkContents)[((ut)->chunkOffset)] : utext_current32(ut))
+#endif  /* U_HIDE_INTERNAL_API */
+
 /**
  * inline version of utext_next32(), for performance-critical situations.
  *
@@ -680,7 +715,7 @@ utext_extract(UText *ut,
  * Returns U_SENTINEL (-1) if the position is at the end of the
  * text.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 #define UTEXT_NEXT32(ut)  \
     ((ut)->chunkOffset < (ut)->chunkLength && ((ut)->chunkContents)[(ut)->chunkOffset]<0xd800 ? \
@@ -694,7 +729,7 @@ utext_extract(UText *ut,
  *  This is a pre-decrement operation.
  *  Returns U_SENTINEL (-1) if the position is at the start of the  text.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 #define UTEXT_PREVIOUS32(ut)  \
     ((ut)->chunkOffset > 0 && \
@@ -711,7 +746,7 @@ utext_extract(UText *ut,
   * the corresponding UChar (UTF-16) index.
   * The returned position will always be aligned to a code point boundary. 
   *
-  * @draft ICU 3.6
+  * @stable ICU 3.6
   */
 #define UTEXT_GETNATIVEINDEX(ut)                       \
     ((ut)->chunkOffset <= (ut)->nativeIndexingLimit?   \
@@ -727,7 +762,7 @@ utext_extract(UText *ut,
   * If the index is out of range, it will be pinned to be within
   * the range of the input text.
   *
-  * @draft ICU 3.8
+  * @stable ICU 3.8
   */
 #define UTEXT_SETNATIVEINDEX(ut, ix)                       \
     { int64_t __offset = (ix) - (ut)->chunkNativeStart; \
@@ -738,8 +773,6 @@ utext_extract(UText *ut,
 
 
 
-#endif
-
 /************************************************************************************
  *
  *   Functions related to writing or modifying the text.
@@ -764,10 +797,10 @@ utext_extract(UText *ut,
  * @see    utext_freeze()
  * @see    utext_replace()
  * @see    utext_copy()
- * @draft ICU 3.4
+ * @stable ICU 3.4
  *
  */
-U_DRAFT UBool U_EXPORT2
+U_STABLE UBool U_EXPORT2
 utext_isWritable(const UText *ut);
 
 
@@ -777,9 +810,9 @@ utext_isWritable(const UText *ut);
   *
   * @param ut The UText to be tested
   * @return TRUE if the underlying text includes meta data.
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
-U_DRAFT UBool U_EXPORT2
+U_STABLE UBool U_EXPORT2
 utext_hasMetaData(const UText *ut);
 
 
@@ -808,9 +841,9 @@ utext_hasMetaData(const UText *ut);
  * @return The signed number of (native) storage units by which
  *         the length of the text expanded or contracted.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT int32_t U_EXPORT2
+U_STABLE int32_t U_EXPORT2
 utext_replace(UText *ut,
              int64_t nativeStart, int64_t nativeLimit,
              const UChar *replacementText, int32_t replacementLength,
@@ -848,9 +881,9 @@ utext_replace(UText *ut,
  * @param move         If TRUE, then the substring is moved, not copied/duplicated.
  * @param status       receives any error status.  Possible errors include U_NO_WRITE_PERMISSION
  *                       
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT void U_EXPORT2
+U_STABLE void U_EXPORT2
 utext_copy(UText *ut,
           int64_t nativeStart, int64_t nativeLimit,
           int64_t destIndex,
@@ -877,43 +910,42 @@ utext_copy(UText *ut,
   *
   *  @param ut  The UText to be frozen.
   *  @see   utext_isWritable()
-  *  @draft ICU 3.6
+  *  @stable ICU 3.6
   */
-U_DRAFT void U_EXPORT2
+U_STABLE void U_EXPORT2
 utext_freeze(UText *ut);
 
 
-#ifndef U_HIDE_DRAFT_API
 /**
  * UText provider properties (bit field indexes).
  *
  * @see UText
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 enum {
     /**
      * It is potentially time consuming for the provider to determine the length of the text.
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */
     UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE = 1,
     /**
      * Text chunks remain valid and usable until the text object is modified or
      * deleted, not just until the next time the access() function is called
      * (which is the default).
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */
     UTEXT_PROVIDER_STABLE_CHUNKS = 2,
     /**
      * The provider supports modifying the text via the replace() and copy()
      * functions.
      * @see Replaceable
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */
     UTEXT_PROVIDER_WRITABLE = 3,
     /**
      * There is meta data associated with the text.
      * @see Replaceable::hasMetaData()
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */ 
     UTEXT_PROVIDER_HAS_META_DATA = 4,
     /**
@@ -921,7 +953,7 @@ enum {
      *  Generally occurs as the result of a deep clone of the UText.
      *  When closing the UText, the associated text must
      *  also be closed/deleted/freed/ whatever is appropriate.
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
      UTEXT_PROVIDER_OWNS_TEXT = 5
 };
@@ -961,7 +993,7 @@ enum {
   *                original text.
   *  @return       The newly created clone, or NULL if the clone operation failed.
   *
-  * @draft ICU 3.4
+  * @stable ICU 3.4
   */
 typedef UText * U_CALLCONV
 UTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status);
@@ -973,7 +1005,7 @@ UTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status);
  * @param ut the UText to get the length of.
  * @return the length, in the native units of the original text string.
  * @see UText
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef int64_t U_CALLCONV
 UTextNativeLength(UText *ut);
@@ -1001,7 +1033,7 @@ UTextNativeLength(UText *ut);
  *                    (the requested index is out of bounds).
  *
  * @see UText
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef UBool U_CALLCONV
 UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
@@ -1031,7 +1063,7 @@ UTextAccess(UText *ut, int64_t nativeIndex, UBool forward);
  *                       preflighting.
  * @return Number of UChars in the data.  Does not include a trailing NUL.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef int32_t U_CALLCONV
 UTextExtract(UText *ut,
@@ -1066,7 +1098,7 @@ UTextExtract(UText *ut,
  * @return The signed number of (native) storage units by which
  *         the length of the text expanded or contracted.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef int32_t U_CALLCONV
 UTextReplace(UText *ut,
@@ -1100,7 +1132,7 @@ UTextReplace(UText *ut,
  * @param move         If TRUE, then the substring is moved, not copied/duplicated.
  * @param status       receives any error status.  Possible errors include U_NO_WRITE_PERMISSION
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef void U_CALLCONV
 UTextCopy(UText *ut,
@@ -1120,7 +1152,7 @@ UTextCopy(UText *ut,
  * @return Absolute (native) index corresponding to chunkOffset in the current chunk.
  *         The returned native index should always be to a code point boundary.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef int64_t U_CALLCONV
 UTextMapOffsetToNative(const UText *ut);
@@ -1138,7 +1170,7 @@ UTextMapOffsetToNative(const UText *ut);
  * @return            Chunk-relative UTF-16 offset corresponding to the specified native
  *                    index.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef int32_t U_CALLCONV
 UTextMapNativeIndexToUTF16(const UText *ut, int64_t nativeIndex);
@@ -1159,7 +1191,7 @@ UTextMapNativeIndexToUTF16(const UText *ut, int64_t nativeIndex);
  *
  * @param ut A UText object to be closed.
  *
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
 typedef void U_CALLCONV
 UTextClose(UText *ut);
@@ -1172,7 +1204,7 @@ UTextClose(UText *ut);
   *             Each text provider implementation must provide an
   *              actual table that is initialized with the appropriate functions
   *              for the type of text being handled.
-  *   @draft ICU 3.6
+  *   @stable ICU 3.6
   */
 struct UTextFuncs {
     /**
@@ -1187,7 +1219,7 @@ struct UTextFuncs {
      *             4 pointers,
      *             2 64-bit fields
      *             in sequence.
-     *   @draft ICU 3.6
+     *   @stable ICU 3.6
      */
     int32_t       tableSize;
 
@@ -1196,14 +1228,14 @@ struct UTextFuncs {
       *              Do not use, reserved for use by the UText framework only.
       *   @internal
       */
-    int32_t       reserved1, reserved2, reserved3;
+    int32_t       reserved1, /** @internal */ reserved2, /** @internal */ reserved3;
 
 
     /**
      * (public) Function pointer for UTextClone
      *
      * @see UTextClone
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextClone *clone;
 
@@ -1212,7 +1244,7 @@ struct UTextFuncs {
      * May be expensive to compute!
      *
      * @see UTextLength
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextNativeLength *nativeLength;
 
@@ -1220,7 +1252,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextAccess.
      *
      * @see UTextAccess
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextAccess *access;
 
@@ -1228,7 +1260,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextExtract.
      *
      * @see UTextExtract
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextExtract *extract;
 
@@ -1236,7 +1268,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextReplace.
      *
      * @see UTextReplace
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextReplace *replace;
 
@@ -1244,7 +1276,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextCopy.
      *
      * @see UTextCopy
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextCopy *copy;
 
@@ -1252,7 +1284,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextMapOffsetToNative.
      *
      * @see UTextMapOffsetToNative
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextMapOffsetToNative *mapOffsetToNative;
 
@@ -1260,7 +1292,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextMapNativeIndexToUTF16.
      *
      * @see UTextMapNativeIndexToUTF16
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     UTextMapNativeIndexToUTF16 *mapNativeIndexToUTF16;
 
@@ -1268,7 +1300,7 @@ struct UTextFuncs {
      * (public) Function pointer for UTextClose.
       *
       * @see UTextClose
-      * @draft ICU 3.6
+      * @stable ICU 3.6
       */
     UTextClose  *close;
 
@@ -1276,8 +1308,8 @@ struct UTextFuncs {
       * (private)  Spare function pointer
       * @internal
       */
-
     UTextClose  *spare1;
+    
     /**
       * (private)  Spare function pointer
       * @internal
@@ -1291,11 +1323,12 @@ struct UTextFuncs {
     UTextClose  *spare3;
 
 };
+/**
+ * Function dispatch table for UText
+ * @see UTextFuncs
+ */
 typedef struct UTextFuncs UTextFuncs;
 
-#endif
-
-#ifndef U_HIDE_DRAFT_API
  /**
   *   UText struct.  Provides the interface between the generic UText access code
   *                  and the UText provider code that works on specific kinds of
@@ -1305,7 +1338,7 @@ typedef struct UTextFuncs UTextFuncs;
   *                  to pass text data to ICU services will have no need to view the
   *                  internals of the UText structs that they open.
   *
-  * @draft ICU 3.6
+  * @stable ICU 3.6
   */
 struct UText {
     /**
@@ -1334,7 +1367,7 @@ struct UText {
     /**
       *  Text provider properties.  This set of flags is maintainted by the
       *                             text provider implementation.
-      *  @draft ICU 3.4
+      *  @stable ICU 3.4
       */
     int32_t         providerProperties;
 
@@ -1342,7 +1375,7 @@ struct UText {
      * (public) sizeOfStruct=sizeof(UText)
      * Allows possible backward compatible extension.
      *
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */
     int32_t         sizeOfStruct;
     
@@ -1352,13 +1385,13 @@ struct UText {
     /**
       *  (protected) Native index of the first character position following
       *              the current chunk.
-      *  @draft ICU 3.6
+      *  @stable ICU 3.6
       */
     int64_t         chunkNativeLimit;
 
     /**
      *   (protected)  Size in bytes of the extra space (pExtra).
-     *  @draft ICU 3.4
+     *  @stable ICU 3.4
      */
     int32_t        extraSize;
 
@@ -1367,7 +1400,7 @@ struct UText {
       *    chunk (UTF-16) indexing correspond.  For UTF-16 sources, value
       *    will be equal to chunkLength.
       *
-      *    @draft ICU 3.6
+      *    @stable ICU 3.6
       */
     int32_t         nativeIndexingLimit;
 
@@ -1375,20 +1408,20 @@ struct UText {
     
     /**
      *  (protected) Native index of the first character in the text chunk.
-     *  @draft ICU 3.6
+     *  @stable ICU 3.6
      */
     int64_t         chunkNativeStart;
 
     /**
      *  (protected) Current iteration position within the text chunk (UTF-16 buffer).
      *  This is the index to the character that will be returned by utext_next32().
-     *  @draft ICU 3.6
+     *  @stable ICU 3.6
      */
     int32_t         chunkOffset;
 
     /**
      *  (protected) Length the text chunk (UTF-16 buffer), in UChars.
-     *  @draft ICU 3.6
+     *  @stable ICU 3.6
      */
     int32_t         chunkLength;
 
@@ -1399,20 +1432,20 @@ struct UText {
      *  (protected)  pointer to a chunk of text in UTF-16 format.
      *  May refer either to original storage of the source of the text, or
      *  if conversion was required, to a buffer owned by the UText.
-     *  @draft ICU 3.6
+     *  @stable ICU 3.6
      */
     const UChar    *chunkContents;
 
      /**
       * (public)     Pointer to Dispatch table for accessing functions for this UText.
-      * @draft ICU 3.6
+      * @stable ICU 3.6
       */
-    UTextFuncs     *pFuncs;
-    
+    const UTextFuncs     *pFuncs;
+
     /**
      *  (protected)  Pointer to additional space requested by the
      *               text provider during the utext_open operation.
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */
     void          *pExtra;
 
@@ -1420,7 +1453,7 @@ struct UText {
      * (protected) Pointer to string or text-containin object or similar.
      * This is the source of the text that this UText is wrapping, in a format
      *  that is known to the text provider functions.
-     * @draft ICU 3.4
+     * @stable ICU 3.4
      */
     const void   *context;
 
@@ -1429,19 +1462,19 @@ struct UText {
     /**
      * (protected) Pointer fields available for use by the text provider.
      * Not used by UText common code.
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     const void     *p; 
     /**
      * (protected) Pointer fields available for use by the text provider.
      * Not used by UText common code.
-     * @draft ICU 3.6
+     * @stable ICU 3.6
      */
     const void     *q;
      /**
      * (protected) Pointer fields available for use by the text provider.
      * Not used by UText common code.
-     * @draft ICU 3.6
+     * @stable ICU 3.6
       */
     const void     *r;
 
@@ -1459,21 +1492,21 @@ struct UText {
     /**
       * (protected) Integer field reserved for use by the text provider.
       * Not used by the UText framework, or by the client (user) of the UText.
-      * @draft ICU 3.4
+      * @stable ICU 3.4
       */
     int64_t         a;
 
     /**
       * (protected) Integer field reserved for use by the text provider.
       * Not used by the UText framework, or by the client (user) of the UText.
-      * @draft ICU 3.4
+      * @stable ICU 3.4
       */
     int32_t         b;
 
     /**
       * (protected) Integer field reserved for use by the text provider.
       * Not used by the UText framework, or by the client (user) of the UText.
-      * @draft ICU 3.4
+      * @stable ICU 3.4
       */
     int32_t         c;
 
@@ -1500,7 +1533,6 @@ struct UText {
     int32_t         privC;
 };
 
-#endif 
 
 /**
  *  Common function for use by Text Provider implementations to allocate and/or initialize
@@ -1516,11 +1548,12 @@ struct UText {
  *             additional storage.
  * @param status Errors are returned here.
  * @return pointer to the UText, allocated if necessary, with extra space set up if requested.
- * @draft ICU 3.4
+ * @stable ICU 3.4
  */
-U_DRAFT UText * U_EXPORT2
+U_STABLE UText * U_EXPORT2
 utext_setup(UText *ut, int32_t extraSpace, UErrorCode *status);
 
+#ifndef U_HIDE_INTERNAL_API
 /**
   * @internal
   *  Value used to help identify correctly initialized UText structs.
@@ -1529,14 +1562,14 @@ utext_setup(UText *ut, int32_t extraSpace, UErrorCode *status);
 enum {
     UTEXT_MAGIC = 0x345ad82c
 };
-#ifndef U_HIDE_DRAFT_API
+#endif  /* U_HIDE_INTERNAL_API */
 
 /**
  * initializer to be used with local (stack) instances of a UText
  *  struct.  UText structs must be initialized before passing
  *  them to one of the utext_open functions.
  *
- * @draft ICU 3.6
+ * @stable ICU 3.6
  */
 #define UTEXT_INITIALIZER {                                        \
                   UTEXT_MAGIC,          /* magic                */ \
@@ -1560,8 +1593,6 @@ enum {
                   }
 
 
-#endif /* U_HIDE_DRAFT_API */
-
 U_CDECL_END