class Worker implements IWorker { //IWorkable, IFeedable{ public void work() { // ....working System.out.println("work in Worker"); } public void eat() { //.... eating in launch break System.out.println("eat in Worker"); } }