public class Cat extends Animal { @Override public String utterance() { return "Meow"; } public void hunt() { // left blank, because the purpose of this method is simply so // that this class has a method that other child classes of // Animal do not have. } }