src/java.base/share/classes/java/text/spi/DecimalFormatSymbolsProvider.java
changeset 58242 94bb65cb37d3
parent 47216 71c04702a3d5
child 58288 48e480e56aad
equal deleted inserted replaced
58241:33de7752835c 58242:94bb65cb37d3
     1 /*
     1 /*
     2  * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    58     /**
    58     /**
    59      * Returns a new <code>DecimalFormatSymbols</code> instance for the
    59      * Returns a new <code>DecimalFormatSymbols</code> instance for the
    60      * specified locale.
    60      * specified locale.
    61      *
    61      *
    62      * @param locale the desired locale
    62      * @param locale the desired locale
    63      * @exception NullPointerException if <code>locale</code> is null
    63      * @throws    NullPointerException if <code>locale</code> is null
    64      * @exception IllegalArgumentException if <code>locale</code> isn't
    64      * @throws    IllegalArgumentException if <code>locale</code> isn't
    65      *     one of the locales returned from
    65      *     one of the locales returned from
    66      *     {@link java.util.spi.LocaleServiceProvider#getAvailableLocales()
    66      *     {@link java.util.spi.LocaleServiceProvider#getAvailableLocales()
    67      *     getAvailableLocales()}.
    67      *     getAvailableLocales()}.
    68      * @return a <code>DecimalFormatSymbols</code> instance.
    68      * @return a <code>DecimalFormatSymbols</code> instance.
    69      * @see java.text.DecimalFormatSymbols#getInstance(java.util.Locale)
    69      * @see java.text.DecimalFormatSymbols#getInstance(java.util.Locale)