Index: source/i18n/unicode/fmtable.h |
diff --git a/source/i18n/unicode/fmtable.h b/source/i18n/unicode/fmtable.h |
index 5edf9175e10dbb046912bb8013f6009935f12f96..6cad276f42366cdab25960b8f074a034d7f4d1bb 100644 |
--- a/source/i18n/unicode/fmtable.h |
+++ b/source/i18n/unicode/fmtable.h |
@@ -1,6 +1,6 @@ |
/* |
******************************************************************************** |
-* Copyright (C) 1997-2013, International Business Machines |
+* Copyright (C) 1997-2014, International Business Machines |
* Corporation and others. All Rights Reserved. |
******************************************************************************** |
* |
@@ -598,13 +598,12 @@ public: |
*/ |
static UClassID U_EXPORT2 getStaticClassID(); |
-#ifndef U_HIDE_DRAFT_API |
/** |
* Convert the UFormattable to a Formattable. Internally, this is a reinterpret_cast. |
* @param fmt a valid UFormattable |
* @return the UFormattable as a Formattable object pointer. This is an alias to the original |
* UFormattable, and so is only valid while the original argument remains in scope. |
- * @draft ICU 52 |
+ * @stable ICU 52 |
*/ |
static inline Formattable *fromUFormattable(UFormattable *fmt); |
@@ -613,7 +612,7 @@ public: |
* @param fmt a valid UFormattable |
* @return the UFormattable as a Formattable object pointer. This is an alias to the original |
* UFormattable, and so is only valid while the original argument remains in scope. |
- * @draft ICU 52 |
+ * @stable ICU 52 |
*/ |
static inline const Formattable *fromUFormattable(const UFormattable *fmt); |
@@ -621,7 +620,7 @@ public: |
* Convert this object pointer to a UFormattable. |
* @return this object as a UFormattable pointer. This is an alias to this object, |
* and so is only valid while this object remains in scope. |
- * @draft ICU 52 |
+ * @stable ICU 52 |
*/ |
inline UFormattable *toUFormattable(); |
@@ -629,10 +628,9 @@ public: |
* Convert this object pointer to a UFormattable. |
* @return this object as a UFormattable pointer. This is an alias to this object, |
* and so is only valid while this object remains in scope. |
- * @draft ICU 52 |
+ * @stable ICU 52 |
*/ |
inline const UFormattable *toUFormattable() const; |
-#endif /* U_HIDE_DRAFT_API */ |
#ifndef U_HIDE_DEPRECATED_API |
/** |
@@ -738,7 +736,6 @@ inline int32_t Formattable::getLong(UErrorCode* status) const { |
} |
#endif /* U_HIDE_DEPRECATED_API */ |
-#ifndef U_HIDE_DRAFT_API |
inline UFormattable* Formattable::toUFormattable() { |
return reinterpret_cast<UFormattable*>(this); |
} |
@@ -754,7 +751,6 @@ inline Formattable* Formattable::fromUFormattable(UFormattable *fmt) { |
inline const Formattable* Formattable::fromUFormattable(const UFormattable *fmt) { |
return reinterpret_cast<const Formattable *>(fmt); |
} |
-#endif /* U_HIDE_DRAFT_API */ |
U_NAMESPACE_END |