Sets the maximum number of digits allowed in the fraction portion of a number. maximumFractionDigits must be >= minimumFractionDigits. If the new value for maximumFractionDigits is less than the current value of minimumFractionDigits, then minimumFractionDigits will also be set to the new value. @
(int newValue)
| 102 | * @see #getMaximumFractionDigits |
| 103 | */ |
| 104 | @Override |
| 105 | public void setMaximumFractionDigits(int newValue) { |
| 106 | nf.setMaximumFractionDigits(newValue); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Sets the minimum number of digits allowed in the integer portion of a |
no outgoing calls
no test coverage detected