package view;

/**
 * This class is derived from section 2.1.3 of the requirements document. This class 
 * represents the inital view that an instructor sees when they start the Class Scheduler
 * program.
 * @author kdavis22
 */
abstract class StudentView extends ScheduleView {

   /**
    * This method allows the students to view the published schedules.
    */
   abstract void viewSchedules();
   
   /**
    * This method allows the students to give feedback on the courses that they were not 
    * able to get in previous quarters.
    */
   abstract void giveFeedback();
}