]> granicus.if.org Git - icu/commitdiff
ICU-10399 Added missing API status tags
authorYoshito Umaoka <y.umaoka@gmail.com>
Wed, 18 Sep 2013 22:51:19 +0000 (22:51 +0000)
committerYoshito Umaoka <y.umaoka@gmail.com>
Wed, 18 Sep 2013 22:51:19 +0000 (22:51 +0000)
X-SVN-Rev: 34389

icu4j/main/classes/core/src/com/ibm/icu/text/GeneralMeasureFormat.java
icu4j/main/classes/core/src/com/ibm/icu/text/ListFormatter.java
icu4j/main/classes/core/src/com/ibm/icu/util/MeasureUnit.java

index 757721b49e979825faf84e1d5dff994c58e7a1e5..37a7f612ba5ef7275c5a15610b8b2fae2bd4bde8 100644 (file)
@@ -462,7 +462,7 @@ public class GeneralMeasureFormat extends MeasureFormat {
     }
 
 
-    /**
+    /*
      * @param prefixSet
      * @param suffixSet
      * @return
@@ -476,7 +476,7 @@ public class GeneralMeasureFormat extends MeasureFormat {
         return 0;
     }
 
-    /**
+    /*
      * @param suffix
      * @param arg0
      * @param arg1
index fc628e4458f81d833f28a97f0721921fdb872244..720f66fc588e5ece74974fa82b2c0fdfffbb47f7 100644 (file)
@@ -38,26 +38,26 @@ final public class ListFormatter {
     
     /**
      * Indicates the style of Listformatter
-     * @deprecated internal use only.
      * @internal
+     * @deprecated This API is ICU internal only.
      */
     public enum Style {
         /**
          * Standard style.
-         * @deprecated
          * @internal
+         * @deprecated This API is ICU internal only.
          */
         STANDARD("standard"),
         /**
          * Style for full durations
-         * @deprecated
          * @internal
+         * @deprecated This API is ICU internal only.
          */
         DURATION("duration"),
         /**
          * Style for durations in abbrevated form
-         * @deprecated
          * @internal
+         * @deprecated This API is ICU internal only.
          */
         DURATION_SHORT("duration-short");
         
@@ -66,7 +66,10 @@ final public class ListFormatter {
         Style(String name) {
             this.name = name;
         }
-        
+        /**
+         * @internal
+         * @deprecated This API is ICU internal only.
+         */
         public String getName() {
             return name;
         }
@@ -90,6 +93,7 @@ final public class ListFormatter {
      *            string for the end of a list items, containing {0} for the
      *            first part of the list, and {1} for the last item.
      * @internal
+     * @deprecated This API is ICU internal only.
      */
     public ListFormatter(String two, String start, String middle, String end) {
         this(two, start, middle, end, null);
@@ -135,8 +139,8 @@ final public class ListFormatter {
      * @param locale the locale in question.
      * @param style the style
      * @return ListFormatter
-     * @deprecated Internal use only.
      * @internal
+     * @deprecated This API is ICU internal only.
      */
     public static ListFormatter getInstance(ULocale locale, Style style) {
         return cache.get(locale, style.getName());
index 49c3680b65540fa45a2e6e09f3970a3ce8e20204..494270d3cbe19e10630bf64e29b8ad6b2f416a06 100644 (file)
@@ -97,6 +97,10 @@ public class MeasureUnit implements Comparable<MeasureUnit>, Serializable {
      * @deprecated This API is ICU internal only.
      */
     protected interface Factory {
+        /**
+         * @internal
+         * @deprecated This API is ICU internal only.
+         */
         MeasureUnit create(String type, String code);
     }