public class Cat extends Pet { public Cat (String name){ super(name); super.setType("Cat"); } @Override public String speak(){ return "meow"; } }