]> granicus.if.org Git - icu/commitdiff
ICU-21249 Fix API status tag issues
authorYoshito Umaoka <yumaoka@users.noreply.github.com>
Tue, 29 Sep 2020 20:14:12 +0000 (16:14 -0400)
committerYoshito Umaoka <yumaoka@users.noreply.github.com>
Tue, 29 Sep 2020 22:42:55 +0000 (18:42 -0400)
icu4j/main/classes/core/src/com/ibm/icu/text/PluralRules.java
icu4j/main/classes/core/src/com/ibm/icu/util/MeasureUnit.java

index 9c9289780ce2df619472ebf046d2ad3110fc72f7..ac082e359a26726f65bda5a7c93dcc8adb7a5cb1 100644 (file)
@@ -403,6 +403,7 @@ public class PluralRules implements Serializable {
      * @internal
      * @deprecated This API is ICU internal only.
      */
+    @Deprecated
     public static PluralRules newInternal(String description, StandardPluralRanges ranges)
             throws ParseException {
         description = description.trim();
index c817f0b6436830983945f71d2768d18270d0d593..2203cc464ff0dc25691c09e7668230a7a88c9a77 100644 (file)
@@ -301,17 +301,18 @@ public class MeasureUnit implements Serializable {
             this.identifier = identifier;
         }
 
-        /*
+        /**
          * Returns the identifier of the prefix.
          *
-         * @draft ICU 68
-         * @provisional This API might change or be removed in a future release.
+         * @internal
+         * @deprecated This API is ICU internal only.
          */
+        @Deprecated
         public String getIdentifier() {
             return identifier;
         }
 
-        /*
+        /**
          * Returns the power of 10 of the prefix. For example, if the prefix is "centi", the power will be -2.
          *
          * @draft ICU 68
@@ -360,6 +361,7 @@ public class MeasureUnit implements Serializable {
      * @param measureUnitImpl
      * @deprecated Internal API for ICU use only.
      */
+    @Deprecated
     public static MeasureUnit fromMeasureUnitImpl(MeasureUnitImpl measureUnitImpl) {
         measureUnitImpl.serialize();
         String identifier = measureUnitImpl.getIdentifier();
@@ -567,7 +569,7 @@ public class MeasureUnit implements Serializable {
      * If this is a SINGLE unit, a list of length 1 will be returned.
      *
      * @return An unmodifiable list of single units
-     * @internal ICU 68 Technology Preview
+     * @draft ICU 68
      * @provisional This API might change or be removed in a future release.
      */
     public List<MeasureUnit> splitToSingleUnits() {