public class Parrot extends Pet { public Parrot(String name){ super(name); super.setType("parrot"); } public String speak(){ return "Polly want a cracker"; } }