package view.calendar; import java.util.Collection; /** * This class represents the weekly calendar view of a schedule. The weekly view * of a calendar is composed of the collection of days it spans as well as the * times of day and the sections contained within each day. * * @author Deniz Tumer * @version 2/25/15 */ public abstract class ViewWeekCalendar { public Collection timesOfDay; public Collection days; }