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