< prev index next >

src/java.base/share/classes/java/text/DateFormatSymbols.java

Print this page
rev 56290 : 8230648: Replace @exception tag with @throws in java.base
Summary: Minor coding style update of javadoc tag in any file in java.base
Reviewed-by: prappo, lancea

*** 120,130 **** * {@link #DateFormatSymbols(Locale) * DateFormatSymbols(Locale.getDefault(Locale.Category.FORMAT))}. * @see #getInstance() * @see java.util.Locale#getDefault(java.util.Locale.Category) * @see java.util.Locale.Category#FORMAT ! * @exception java.util.MissingResourceException * if the resources for the default locale cannot be * found or cannot be loaded. */ public DateFormatSymbols() { --- 120,130 ---- * {@link #DateFormatSymbols(Locale) * DateFormatSymbols(Locale.getDefault(Locale.Category.FORMAT))}. * @see #getInstance() * @see java.util.Locale#getDefault(java.util.Locale.Category) * @see java.util.Locale.Category#FORMAT ! * @throws java.util.MissingResourceException * if the resources for the default locale cannot be * found or cannot be loaded. */ public DateFormatSymbols() {
*** 140,150 **** * implementations. For full locale coverage, use the * {@link #getInstance(Locale) getInstance} method. * * @param locale the desired locale * @see #getInstance(Locale) ! * @exception java.util.MissingResourceException * if the resources for the specified locale cannot be * found or cannot be loaded. */ public DateFormatSymbols(Locale locale) { --- 140,150 ---- * implementations. For full locale coverage, use the * {@link #getInstance(Locale) getInstance} method. * * @param locale the desired locale * @see #getInstance(Locale) ! * @throws java.util.MissingResourceException * if the resources for the specified locale cannot be * found or cannot be loaded. */ public DateFormatSymbols(Locale locale) {
*** 338,348 **** * as for those supported by installed * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider} * implementations. * @param locale the given locale. * @return a <code>DateFormatSymbols</code> instance. ! * @exception NullPointerException if <code>locale</code> is null * @since 1.6 */ public static final DateFormatSymbols getInstance(Locale locale) { DateFormatSymbols dfs = getProviderInstance(locale); if (dfs != null) { --- 338,348 ---- * as for those supported by installed * {@link java.text.spi.DateFormatSymbolsProvider DateFormatSymbolsProvider} * implementations. * @param locale the given locale. * @return a <code>DateFormatSymbols</code> instance. ! * @throws NullPointerException if <code>locale</code> is null * @since 1.6 */ public static final DateFormatSymbols getInstance(Locale locale) { DateFormatSymbols dfs = getProviderInstance(locale); if (dfs != null) {
*** 594,606 **** * the {@link java.util.TimeZone TimeZone} class that are not * <a href="../util/TimeZone.html#CustomID">custom IDs</a>. * All other entries are localized names. * * @param newZoneStrings the new time zone strings. ! * @exception IllegalArgumentException if the length of any row in * <code>newZoneStrings</code> is less than 5 ! * @exception NullPointerException if <code>newZoneStrings</code> is null * @see #getZoneStrings() */ public void setZoneStrings(String[][] newZoneStrings) { String[][] aCopy = new String[newZoneStrings.length][]; for (int i = 0; i < newZoneStrings.length; ++i) { --- 594,606 ---- * the {@link java.util.TimeZone TimeZone} class that are not * <a href="../util/TimeZone.html#CustomID">custom IDs</a>. * All other entries are localized names. * * @param newZoneStrings the new time zone strings. ! * @throws IllegalArgumentException if the length of any row in * <code>newZoneStrings</code> is less than 5 ! * @throws NullPointerException if <code>newZoneStrings</code> is null * @see #getZoneStrings() */ public void setZoneStrings(String[][] newZoneStrings) { String[][] aCopy = new String[newZoneStrings.length][]; for (int i = 0; i < newZoneStrings.length; ++i) {
< prev index next >