123456789101112131415161718192021
  1. /**
  2. * Write a description of class Dog here.
  3. *
  4. * @author (your name)
  5. * @version (a version number or a date)
  6. */
  7. public class Dog extends Pet
  8. {
  9. public Dog(String name){
  10. super(name);
  11. super.setType("Dog");
  12. }
  13. public String speak(){
  14. return "wowowowo";
  15. }
  16. }