]> granicus.if.org Git - icu/commitdiff
ICU-20463 Use copybrief for children that are older than parents.
authorShane Carr <shane@unicode.org>
Sat, 9 Mar 2019 00:27:33 +0000 (16:27 -0800)
committerShane F. Carr <shane@unicode.org>
Tue, 12 Mar 2019 21:34:02 +0000 (14:34 -0700)
icu4c/source/i18n/unicode/numberformatter.h
icu4c/source/i18n/unicode/numberrangeformatter.h

index 9175720d49b41dde871cbeae19af433db15cbb14..4fd6830518d91123af6b115cba6e94ad036a3d7b 100644 (file)
@@ -2437,15 +2437,31 @@ class U_I18N_API FormattedNumber : public UMemory, public FormattedValue {
      */
     FormattedNumber& operator=(FormattedNumber&& src) U_NOEXCEPT;
 
-    /** @copydoc FormattedValue::toString() */
+    // Copybrief: this method is older than the parent method
+    /**
+     * @copybrief FormattedValue::toString()
+     *
+     * For more information, see FormattedValue::toString()
+     *
+     * @draft ICU 62
+     */
     UnicodeString toString(UErrorCode& status) const U_OVERRIDE;
 
+    // Copydoc: this method is new in ICU 64
     /** @copydoc FormattedValue::toTempString() */
     UnicodeString toTempString(UErrorCode& status) const U_OVERRIDE;
 
-    /** @copydoc FormattedValue::appendTo() */
+    // Copybrief: this method is older than the parent method
+    /**
+     * @copybrief FormattedValue::appendTo()
+     *
+     * For more information, see FormattedValue::appendTo()
+     *
+     * @draft ICU 62
+     */
     Appendable &appendTo(Appendable& appendable, UErrorCode& status) const U_OVERRIDE;
 
+    // Copydoc: this method is new in ICU 64
     /** @copydoc FormattedValue::nextPosition() */
     UBool nextPosition(ConstrainedFieldPosition& cfpos, UErrorCode& status) const U_OVERRIDE;
 
index 2c48adcff6dd93d1273b1c39b6220e68a230cac6..4a386b8039416e7b7117d5ce6c3982be8ecc0778 100644 (file)
@@ -694,24 +694,32 @@ class U_I18N_API LocalizedNumberRangeFormatter
  */
 class U_I18N_API FormattedNumberRange : public UMemory, public FormattedValue {
   public:
+    // Copybrief: this method is older than the parent method
     /**
-     * @copydoc FormattedValue::toString()
+     * @copybrief FormattedValue::toString()
+     *
+     * For more information, see FormattedValue::toString()
+     *
+     * @draft ICU 63
      */
     UnicodeString toString(UErrorCode& status) const U_OVERRIDE;
 
-    /**
-     * @copydoc FormattedValue::toTempString()
-     */
+    // Copydoc: this method is new in ICU 64
+    /** @copydoc FormattedValue::toTempString() */
     UnicodeString toTempString(UErrorCode& status) const U_OVERRIDE;
 
+    // Copybrief: this method is older than the parent method
     /**
-     * @copydoc FormattedValue::appendTo()
+     * @copybrief FormattedValue::appendTo()
+     *
+     * For more information, see FormattedValue::appendTo()
+     *
+     * @draft ICU 63
      */
     Appendable &appendTo(Appendable &appendable, UErrorCode& status) const U_OVERRIDE;
 
-    /**
-     * @copydoc FormattedValue::nextPosition()
-     */
+    // Copydoc: this method is new in ICU 64
+    /** @copydoc FormattedValue::nextPosition() */
     UBool nextPosition(ConstrainedFieldPosition& cfpos, UErrorCode& status) const U_OVERRIDE;
 
     /**