package view; /** * Derived from Section 2.1.1 of the requirements * This is the initial view for an admin * @author jnpease */ abstract class AdminView { /** * viewSchedules lets the admin go to the page * to edit, generate, or view schedules */ abstract void viewSchedules(); /** * viewDatabases lets the admin go to the databases * for instructors, courses, rooms, etc */ abstract void viewDatabases(); }