Interface MonthData
public interface MonthData
Model class for data of a single month containing year, month, day data etc.
-
Method Summary
-
Method Details
-
getYear
int getYear()- Returns:
- the year of this month.
-
setYear
void setYear(int year) Set the year of this month.- Parameters:
year- the new year.
-
getMonth
Month getMonth()- Returns:
- the
Month.
-
setMonth
Set a newMonth.- Parameters:
month- the newMonth.
-
getOvertimePreviousMonth
Duration getOvertimePreviousMonth()- Returns:
- the duration of the previous month's overtime.
-
setOvertimePreviousMonth
Set the duration of the previous month's overtime.- Parameters:
overtimePreviousMonth- the new duration of the previous month's overtime.
-
getDays
- Returns:
- the
DayDatas in this month.
-
setDays
Set theDayDatas in this month.- Parameters:
days- the newDayDatas.
-