src/java.base/share/classes/java/text/spi/DateFormatSymbolsProvider.java
changeset 58288 48e480e56aad
parent 58242 94bb65cb37d3
child 58679 9c3209ff7550
equal deleted inserted replaced
58287:a7f16447085e 58288:48e480e56aad
    44      */
    44      */
    45     protected DateFormatSymbolsProvider() {
    45     protected DateFormatSymbolsProvider() {
    46     }
    46     }
    47 
    47 
    48     /**
    48     /**
    49      * Returns a new <code>DateFormatSymbols</code> instance for the
    49      * Returns a new {@code DateFormatSymbols} instance for the
    50      * specified locale.
    50      * specified locale.
    51      *
    51      *
    52      * @param locale the desired locale
    52      * @param locale the desired locale
    53      * @throws    NullPointerException if <code>locale</code> is null
    53      * @throws    NullPointerException if {@code locale} is null
    54      * @throws    IllegalArgumentException if <code>locale</code> isn't
    54      * @throws    IllegalArgumentException if {@code locale} isn't
    55      *     one of the locales returned from
    55      *     one of the locales returned from
    56      *     {@link java.util.spi.LocaleServiceProvider#getAvailableLocales()
    56      *     {@link java.util.spi.LocaleServiceProvider#getAvailableLocales()
    57      *     getAvailableLocales()}.
    57      *     getAvailableLocales()}.
    58      * @return a <code>DateFormatSymbols</code> instance.
    58      * @return a {@code DateFormatSymbols} instance.
    59      * @see java.text.DateFormatSymbols#getInstance(java.util.Locale)
    59      * @see java.text.DateFormatSymbols#getInstance(java.util.Locale)
    60      */
    60      */
    61     public abstract DateFormatSymbols getInstance(Locale locale);
    61     public abstract DateFormatSymbols getInstance(Locale locale);
    62 }
    62 }