Interface IVisualization
- All Known Implementing Classes:
Visualization
public interface IVisualization
The IVisualization interface provides methods to visualize the simulation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidClears the screen.voidnewCustomer(int customer, int listSize) Adds a new customer to the visualization.voidremoveCustomer(int customer, int listSize) Removes a customer from the visualization.
-
Method Details
-
clearScreen
void clearScreen()Clears the screen. -
newCustomer
void newCustomer(int customer, int listSize) Adds a new customer to the visualization.- Parameters:
customer- the customer to add
-
removeCustomer
void removeCustomer(int customer, int listSize) Removes a customer from the visualization.- Parameters:
customer- the customer to remove
-