package caltool.model.view; import caltool.model.caldb.*; import mvp.*; public class WeeklyAgendaList { /** * Construct this with the given CalendarDB. */ public WeeklyAgendaList(CalendarDB calDB) { this.calDB = calDB; } /** The caldb for getting current data */ CalendarDB calDB; }