From: Yoshito Umaoka Date: Fri, 12 Aug 2011 15:31:37 +0000 (+0000) Subject: ICU-8630 A few more API doc updates explaining default locale type to be used X-Git-Tag: milestone-59-0-1~4588 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d895f91300401bdf85e3d4d965cc5b5f286ab28e;p=icu ICU-8630 A few more API doc updates explaining default locale type to be used X-SVN-Rev: 30496 --- diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/PluralFormat.java b/icu4j/main/classes/core/src/com/ibm/icu/text/PluralFormat.java index 11977d7ffd9..97ef27d5242 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/PluralFormat.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/PluralFormat.java @@ -176,9 +176,10 @@ public class PluralFormat extends UFormat { transient private double offset = 0; /** - * Creates a new PluralFormat for the default locale. + * Creates a new PluralFormat for the default FORMAT locale. * This locale will be used to get the set of plural rules and for standard * number formatting. + * @see Category#FORMAT * @stable ICU 3.8 */ public PluralFormat() { @@ -198,9 +199,10 @@ public class PluralFormat extends UFormat { /** * Creates a new PluralFormat for a given set of rules. - * The standard number formatting will be done using the default locale. + * The standard number formatting will be done using the default FORMAT locale. * @param rules defines the behavior of the PluralFormat * object. + * @see Category#FORMAT * @stable ICU 3.8 */ public PluralFormat(PluralRules rules) { @@ -222,10 +224,11 @@ public class PluralFormat extends UFormat { /** * Creates a new PluralFormat for a given pattern string. - * The default locale will be used to get the set of plural rules and for + * The default FORMAT locale will be used to get the set of plural rules and for * standard number formatting. * @param pattern the pattern for this PluralFormat. * @throws IllegalArgumentException if the pattern is invalid. + * @see Category#FORMAT * @stable ICU 3.8 */ public PluralFormat(String pattern) { @@ -253,11 +256,12 @@ public class PluralFormat extends UFormat { /** * Creates a new PluralFormat for a given set of rules and a * pattern. - * The standard number formatting will be done using the default locale. + * The standard number formatting will be done using the default FORMAT locale. * @param rules defines the behavior of the PluralFormat * object. * @param pattern the pattern for this PluralFormat. * @throws IllegalArgumentException if the pattern is invalid. + * @see Category#FORMAT * @stable ICU 3.8 */ public PluralFormat(PluralRules rules, String pattern) {