Add javadoc comments for new fields.

X-SVN-Rev: 967
This commit is contained in:
Alan Liu 2000-03-21 17:05:48 +00:00
parent 5043fda0b0
commit babd74d8a1
2 changed files with 60 additions and 2 deletions

View file

@ -751,10 +751,39 @@ public abstract class Calendar implements Serializable, Cloneable {
*/
private int minimalDaysInFirstWeek;
// Weekend onset and cease
/**
* First day of the weekend in this calendar's locale. Must be in
* the range SUNDAY...SATURDAY (1..7). The weekend starts at
* weekendOnsetMillis milliseconds after midnight on that day of
* the week. This value is taken from locale resource data.
*/
private int weekendOnset;
/**
* Milliseconds after midnight at which the weekend starts on the
* day of the week weekendOnset. Times that are greater than or
* equal to weekendOnsetMillis are considered part of the weekend.
* Must be in the range 0..24*60*60*1000-1. This value is taken
* from locale resource data.
*/
private int weekendOnsetMillis;
/**
* Day of the week when the weekend stops in this calendar's
* locale. Must be in the range SUNDAY...SATURDAY (1..7). The
* weekend stops at weekendCeaseMillis milliseconds after midnight
* on that day of the week. This value is taken from locale
* resource data.
*/
private int weekendCease;
/**
* Milliseconds after midnight at which the weekend stops on the
* day of the week weekendCease. Times that are greater than or
* equal to weekendCeaseMillis are considered not to be the
* weekend. Must be in the range 0..24*60*60*1000-1. This value
* is taken from locale resource data.
*/
private int weekendCeaseMillis;
/**

View file

@ -751,10 +751,39 @@ public abstract class Calendar implements Serializable, Cloneable {
*/
private int minimalDaysInFirstWeek;
// Weekend onset and cease
/**
* First day of the weekend in this calendar's locale. Must be in
* the range SUNDAY...SATURDAY (1..7). The weekend starts at
* weekendOnsetMillis milliseconds after midnight on that day of
* the week. This value is taken from locale resource data.
*/
private int weekendOnset;
/**
* Milliseconds after midnight at which the weekend starts on the
* day of the week weekendOnset. Times that are greater than or
* equal to weekendOnsetMillis are considered part of the weekend.
* Must be in the range 0..24*60*60*1000-1. This value is taken
* from locale resource data.
*/
private int weekendOnsetMillis;
/**
* Day of the week when the weekend stops in this calendar's
* locale. Must be in the range SUNDAY...SATURDAY (1..7). The
* weekend stops at weekendCeaseMillis milliseconds after midnight
* on that day of the week. This value is taken from locale
* resource data.
*/
private int weekendCease;
/**
* Milliseconds after midnight at which the weekend stops on the
* day of the week weekendCease. Times that are greater than or
* equal to weekendCeaseMillis are considered not to be the
* weekend. Must be in the range 0..24*60*60*1000-1. This value
* is taken from locale resource data.
*/
private int weekendCeaseMillis;
/**