/** * The interface definition of a bank for a simulation * @author gtowell * Created: Jan 3, 2020 */ public interface BankInterface { /** * The customer comes into a bank and gets in line * @param customer the customer coming in */ public void enteringCustomer(Customer customer); }