Interface Page
- All Known Implementing Classes:
AppointmentMenu, DoctorMenu, ExportMenu, MainMenu, PatientMenu, ReportsMenu
public interface Page
Denotes what every menu page has to offer.
-
Method Summary
Modifier and TypeMethodDescriptionvoidDefines which options should menu provide and how will be mapped options to the functions.voidShows menu options in terminal.voidProcesses the user option based on page menu.
-
Method Details
-
defineMenu
void defineMenu()Defines which options should menu provide and how will be mapped options to the functions. -
printMenu
void printMenu()Shows menu options in terminal. -
processMenu
void processMenu()Processes the user option based on page menu.
-