From: Andy Heninger Date: Fri, 28 Jun 2013 21:12:10 +0000 (+0000) Subject: ICU-9936 Improved API descriptions for DecimalFormat set min/max significant digits. X-Git-Tag: milestone-59-0-1~2803 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa30f0afbf7d9e28b488390838a94e7512ab1422;p=icu ICU-9936 Improved API descriptions for DecimalFormat set min/max significant digits. X-SVN-Rev: 33868 --- diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java b/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java index dbdcce1ffcf..a99b4234ebd 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java @@ -4936,9 +4936,9 @@ public class DecimalFormat extends NumberFormat { /** * {@icu} Sets the minimum number of significant digits that will be displayed. If * min is less than one then it is set to one. If the maximum significant - * digits count is less than min, then it is set to - * min. This value has no effect unless {@link #areSignificantDigitsUsed()} - * returns true. + * digits count is less than min, then it is set to min. + * This function also enables the use of significant digits by this formatter - + * {@link #areSignificantDigitsUsed()} will return true. * * @param min the fewest significant digits to be shown * @stable ICU 3.0 @@ -4957,9 +4957,9 @@ public class DecimalFormat extends NumberFormat { /** * {@icu} Sets the maximum number of significant digits that will be displayed. If * max is less than one then it is set to one. If the minimum significant - * digits count is greater than max, then it is set to - * max. This value has no effect unless {@link #areSignificantDigitsUsed()} - * returns true. + * digits count is greater than max, then it is set to max. + * This function also enables the use of significant digits by this formatter - + * {@link #areSignificantDigitsUsed()} will return true. * * @param max the most significant digits to be shown * @stable ICU 3.0