public class Cook extends Thread { private Pot pot; public Cook(Pot pot) { super(); this.pot = pot; } public void run() { try { while (true) { this.pot.cook(); } } catch (InterruptedException e) { // do nothing } } }