123456789101112131415161718192021222324252627282930313233 |
- public class Pet
- {
- private String name;
- private String petType;
-
- public Pet(){
- }
-
- public Pet(String petName){
- this.name = petName;
- }
-
- public void setPetType(String petType){
- this.petType = petType;
- }
-
- public String getPetType(){
- return petType;
- }
-
- public void setName(String name){
- this.name = name;
- }
-
- public String getName(){
- return this.name;
- }
-
- public String speak(){
- return "**Pet screeches in German**";
- }
- }
|