/** * Write a description of class Dog here. * * @author (your name) * @version (a version number or a date) */ public class Dog extends Pet{ public String getName() { return name; } public void setName(String name) { this.name = name; } public String speak() { return "Woof woof"; } }