package admin; import java.sql.Time; /** * The TimeBlock class contains information pertaining to the time * preferences selected either by an instructor or administrator. This * information includes a start and end time, as well as booleans * to indicate if this time was selected originally by the instructor * or by an administrator. */ abstract class TimeBlock { Time blockStart; Time blockEnd; boolean adminSelected; boolean instructorSelected; }