1234567891011121314151617181920212223242526272829303132 |
-
- /**
- * Write a description of class Pet here.
- *
- * @author (your name)
- * @version (a version number or a date)
- */
- public class Pet
- {
- // instance variables - replace the example below with your own
- private String name;
- private String speak;
-
- public void Pet(){
- this.name = name;
- this.speak = "chirp";
- }
-
-
- public void setName(String name){
- this.name = name;
- }
-
- public String getName(){
- return name;
- }
-
- public String speak(){
- return speak;
- }
- }
|