mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8230648: Replace @exception tag with @throws in java.base
Minor coding style update of javadoc tag in any file in java.base Reviewed-by: prappo, lancea
This commit is contained in:
parent
2fc6c6459d
commit
b15b322cf3
196 changed files with 1959 additions and 1962 deletions
|
@ -109,7 +109,7 @@ public class DecimalFormatSymbols implements Cloneable, Serializable {
|
|||
* instead of the Latin numbering system.
|
||||
*
|
||||
* @param locale the desired locale
|
||||
* @exception NullPointerException if {@code locale} is null
|
||||
* @throws NullPointerException if {@code locale} is null
|
||||
*/
|
||||
public DecimalFormatSymbols( Locale locale ) {
|
||||
initialize( locale );
|
||||
|
@ -172,7 +172,7 @@ public class DecimalFormatSymbols implements Cloneable, Serializable {
|
|||
*
|
||||
* @param locale the desired locale.
|
||||
* @return a {@code DecimalFormatSymbols} instance.
|
||||
* @exception NullPointerException if {@code locale} is null
|
||||
* @throws NullPointerException if {@code locale} is null
|
||||
* @since 1.6
|
||||
*/
|
||||
public static final DecimalFormatSymbols getInstance(Locale locale) {
|
||||
|
@ -576,7 +576,7 @@ public class DecimalFormatSymbols implements Cloneable, Serializable {
|
|||
* symbol attribute to the currency's ISO 4217 currency code.
|
||||
*
|
||||
* @param currency the new currency to be used
|
||||
* @exception NullPointerException if {@code currency} is null
|
||||
* @throws NullPointerException if {@code currency} is null
|
||||
* @since 1.4
|
||||
* @see #setCurrencySymbol
|
||||
* @see #setInternationalCurrencySymbol
|
||||
|
@ -652,7 +652,7 @@ public class DecimalFormatSymbols implements Cloneable, Serializable {
|
|||
* Examples: "x10^" for 1.23x10^4, "E" for 1.23E4.
|
||||
*
|
||||
* @param exp the exponent separator string
|
||||
* @exception NullPointerException if {@code exp} is null
|
||||
* @throws NullPointerException if {@code exp} is null
|
||||
* @see #getExponentSeparator()
|
||||
* @since 1.6
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue