public class TeaInfuser { private Tea tea; public void addTea(Tea tea) { this.tea = tea; System.out.println("Adding " + tea.getflavor() + " to the infuser for 5 seconds"); try { Thread.sleep(5000); } catch (InterruptedException ie) { } } }