src/java.base/share/classes/java/text/spi/DecimalFormatSymbolsProvider.java
changeset 58288 48e480e56aad
parent 58242 94bb65cb37d3
child 58679 9c3209ff7550
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
    54      */
    54      */
    55     protected DecimalFormatSymbolsProvider() {
    55     protected DecimalFormatSymbolsProvider() {
    56     }
    56     }
    57 
    57 
    58     /**
    58     /**
    59      * Returns a new <code>DecimalFormatSymbols</code> instance for the
    59      * Returns a new {@code DecimalFormatSymbols} instance for the
    60      * specified locale.
    60      * specified locale.
    61      *
    61      *
    62      * @param locale the desired locale
    62      * @param locale the desired locale
    63      * @throws    NullPointerException if <code>locale</code> is null
    63      * @throws    NullPointerException if {@code locale} is null
    64      * @throws    IllegalArgumentException if <code>locale</code> isn't
    64      * @throws    IllegalArgumentException if {@code locale} 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} instance.
    69      * @see java.text.DecimalFormatSymbols#getInstance(java.util.Locale)
    69      * @see java.text.DecimalFormatSymbols#getInstance(java.util.Locale)
    70      */
    70      */
    71     public abstract DecimalFormatSymbols getInstance(Locale locale);
    71     public abstract DecimalFormatSymbols getInstance(Locale locale);
    72 }
    72 }