/** * Write a description of class Cat here. * * @author (your name) * @version (a version number or a date) */ public class Cat extends Pet { // instance variables - replace the example below with your own /** * Constructor for objects of class Cat */ public Cat(String name){ super(name); super.setType("Cat"); } public String speak(){ return "Meow"; } }