
|
If you were logged in you would be able to see more operations.
|
|
|
|
MonthlyCalendar uses a boolean array where the first element is [0] and the last [30]. isTimeIncluded get the DAY_OF_MONTH value from a java.util.Calendar, where the first day of the month is 1 (not 0 !!!). Then it is checked, if the excludeDays array at the days position is true or false.
int day = cl.get(java.util.Calendar.DAY_OF_MONTH);
excludeDays[day]
|
|
Description
|
MonthlyCalendar uses a boolean array where the first element is [0] and the last [30]. isTimeIncluded get the DAY_OF_MONTH value from a java.util.Calendar, where the first day of the month is 1 (not 0 !!!). Then it is checked, if the excludeDays array at the days position is true or false.
int day = cl.get(java.util.Calendar.DAY_OF_MONTH);
excludeDays[day]
|
Show » |
|