123456789101112131415161718192021 |
-
- /**
- * Write a description of class Dog here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class Dog extends Pet
- {
- public Dog(String name){
-
- super(name);
- super.setType("Dog");
- }
-
- public String speak(){
-
- return "wowowowo";
-
- }
- }
|