Dog.java 282B

12345678910111213141516171819202122
  1. /**
  2. * Write a description of class Dog here.
  3. **/
  4. public class Dog extends Pet
  5. {
  6. public Dog()
  7. {
  8. super();
  9. }
  10. public Dog(String type, String name)
  11. {
  12. super(type, name);
  13. }
  14. public String speak()
  15. {
  16. return "woof";
  17. }
  18. }