Interface ProjectReportDay


public interface ProjectReportDay
The projects worked on during a single day of the ProjectReport including date and activities.
  • Method Details

    • getDate

      LocalDate getDate()
      Get the date of this day.
      Returns:
      the date of this day.
    • getType

      DayType getType()
      Get the DayType of this day.
      Returns:
      the DayType of this day.
    • getComment

      String getComment()
      Get the comment of this day.
      Returns:
      the comment of this day.
    • getProjects

      List<ProjectReportActivity> getProjects()
      Get the project activities of this day.
      Returns:
      the project activities of this day.