mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-5345 @tag fix
X-SVN-Rev: 20195
This commit is contained in:
parent
ef8fb52d6e
commit
1306af061d
2 changed files with 10 additions and 6 deletions
|
@ -4624,9 +4624,10 @@ public abstract class Calendar implements Serializable, Cloneable, Comparable {
|
|||
* Subclasses may override this.
|
||||
* Called by handleComputeJulianDay. Returns the default month (0-based) for the year,
|
||||
* taking year and era into account. Defaults to 0 (JANUARY) for Gregorian.
|
||||
* @parameter extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @param extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @return the default month
|
||||
* @provisional ICU 3.6
|
||||
* @draft ICU 3.6
|
||||
* @see #MONTH
|
||||
*/
|
||||
protected int getDefaultMonthInYear(int extendedYear) {
|
||||
|
@ -4637,9 +4638,10 @@ public abstract class Calendar implements Serializable, Cloneable, Comparable {
|
|||
* Subclasses may override this.
|
||||
* Called by handleComputeJulianDay. Returns the default day (1-based) for the month,
|
||||
* taking currently-set year and era into account. Defaults to 1 for Gregorian.
|
||||
* @parameter extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @parameter month the month, as returned by getDefaultMonthInYear
|
||||
* @param extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @param month the month, as returned by getDefaultMonthInYear
|
||||
* @return the default day of the month
|
||||
* @draft ICU 3.6
|
||||
* @provisional ICU 3.6
|
||||
* @see #DAY_OF_MONTH
|
||||
*/
|
||||
|
|
|
@ -230,9 +230,10 @@ public class JapaneseCalendar extends GregorianCalendar {
|
|||
/**
|
||||
* Called by handleComputeJulianDay. Returns the default month (0-based) for the year,
|
||||
* taking year and era into account. Defaults to 0 (JANUARY) for Gregorian.
|
||||
* @parameter extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @param extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @return the default month
|
||||
* @provisional ICU 3.6
|
||||
* @draft ICU 3.6
|
||||
* @see #MONTH
|
||||
*/
|
||||
protected int getDefaultMonthInYear(int extendedYear)
|
||||
|
@ -252,9 +253,10 @@ public class JapaneseCalendar extends GregorianCalendar {
|
|||
/**
|
||||
* Called by handleComputeJulianDay. Returns the default day (1-based) for the month,
|
||||
* taking currently-set year and era into account. Defaults to 1 for Gregorian.
|
||||
* @parameter extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @parameter month the month, as returned by getDefaultMonthInYear
|
||||
* @param extendedYear the extendedYear, as returned by handleGetExtendedYear
|
||||
* @param month the month, as returned by getDefaultMonthInYear
|
||||
* @return the default day of the month
|
||||
* @draft ICU 3.6
|
||||
* @provisional ICU 3.6
|
||||
* @see #DAY_OF_MONTH
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue