public class Clinic { private void run() { //This method should control the flow of the program } public static void main(String[] args) { Clinic clinic = new Clinic(); clinic.run(); } }