public class Savage extends Thread { private Pot pot; public Savage(Pot pot) { super(); this.pot = pot; } public void run() { this.pot.take(); } }