package com.iluwatar; import java.util.ArrayList; public class Servant { public String name; public Servant(String name){ this.name = name; } public void feed(Royalty r){ r.getFed(); } public void giveWine(Royalty r){ r.getDrink(); } public void GiveCompliments(Royalty r){ r.receiveCompliments(); } public boolean checkIfYouWillBeHanged(ArrayList tableGuests){ boolean anotherDay = true; for( Royalty r : tableGuests ) if( !r.getMood() ) anotherDay = false; return anotherDay; } }