Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: source/i18n/unicode/scientificnumberformatter.h

Issue 2440913002: Update ICU to 58.1
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « source/i18n/unicode/reldatefmt.h ('k') | source/i18n/unicode/search.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « source/i18n/unicode/reldatefmt.h ('k') | source/i18n/unicode/search.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698