package student;

/**
 * This is the main user interface for the student user.
 */
abstract class MainUI {
	/**
	 * ViewGeneragedSchedules brings up the user interface that allows a student
	 * user to see schedules that have been made available for viewing by the
	 * scheduling administrator.
	 */
	public abstract void viewGeneratedSchedules();
	
	/**
	 * EnterFutureSchedulePreference brings up the user interface that allows a
	 * student to enter their preferences for what they would like to take in
	 * upcoming quarters in order to help the scheduling administrator create enough
	 * sections.
	 */
	public abstract void enterFutureSchedulePreference();
}