Index: source/i18n/unicode/scientificnumberformatter.h |
diff --git a/source/i18n/unicode/scientificnumberformatter.h b/source/i18n/unicode/scientificnumberformatter.h |
index 700694cd24bb0fc1cce17d7e899cd5c0b3485fd6..0035a6e69d1669574a5ed47d8026fbbd093e5020 100644 |
--- a/source/i18n/unicode/scientificnumberformatter.h |
+++ b/source/i18n/unicode/scientificnumberformatter.h |
@@ -1,6 +1,8 @@ |
+// Copyright (C) 2016 and later: Unicode, Inc. and others. |
+// License & terms of use: http://www.unicode.org/copyright.html |
/* |
********************************************************************** |
-* Copyright (c) 2014, International Business Machines |
+* Copyright (c) 2014-2016, International Business Machines |
* Corporation and others. All Rights Reserved. |
********************************************************************** |
*/ |
@@ -11,7 +13,6 @@ |
#if !UCONFIG_NO_FORMATTING |
-#ifndef U_HIDE_DRAFT_API |
#include "unicode/unistr.h" |
@@ -45,7 +46,7 @@ class Formattable; |
* fmt->format(1.23456e-78, appendTo, status); |
* </pre> |
* |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
class U_I18N_API ScientificNumberFormatter : public UObject { |
public: |
@@ -58,7 +59,7 @@ public: |
* @param status error returned here. |
* @return The new ScientificNumberFormatter instance. |
* |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
static ScientificNumberFormatter *createSuperscriptInstance( |
DecimalFormat *fmtToAdopt, UErrorCode &status); |
@@ -70,7 +71,7 @@ public: |
* @param status error returned here. |
* @return The ScientificNumberFormatter instance. |
* |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
static ScientificNumberFormatter *createSuperscriptInstance( |
const Locale &locale, UErrorCode &status); |
@@ -86,7 +87,7 @@ public: |
* @param status error returned here. |
* @return The new ScientificNumberFormatter instance. |
* |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
static ScientificNumberFormatter *createMarkupInstance( |
DecimalFormat *fmtToAdopt, |
@@ -103,7 +104,7 @@ public: |
* @param status error returned here. |
* @return The ScientificNumberFormatter instance. |
* |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
static ScientificNumberFormatter *createMarkupInstance( |
const Locale &locale, |
@@ -114,7 +115,7 @@ public: |
/** |
* Returns a copy of this object. Caller must free returned copy. |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
ScientificNumberFormatter *clone() const { |
return new ScientificNumberFormatter(*this); |
@@ -122,7 +123,7 @@ public: |
/** |
* Destructor. |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
virtual ~ScientificNumberFormatter(); |
@@ -134,7 +135,7 @@ public: |
* @param status any error returned here. |
* @return appendTo |
* |
- * @draft ICU 55 |
+ * @stable ICU 55 |
*/ |
UnicodeString &format( |
const Formattable &number, |
@@ -216,7 +217,6 @@ public: |
U_NAMESPACE_END |
-#endif /* U_HIDE_DRAFT_API */ |
#endif /* !UCONFIG_NO_FORMATTING */ |
#endif |