Interface ProjectReportDay
-
public interface ProjectReportDayThe projects worked on during a single day of theProjectReportincluding date andactivities.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetComment()java.time.LocalDategetDate()java.util.List<ProjectReportActivity>getProjects()DayTypegetType()
-
-
-
Method Detail
-
getDate
java.time.LocalDate getDate()
-
getType
DayType getType()
-
getComment
java.lang.String getComment()
-
getProjects
java.util.List<ProjectReportActivity> getProjects()
-
-