KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dynaop > example > PersonImpl


1 package dynaop.example;
2
3 /**
4  * Person implementation.
5  *
6  * @author Bob Lee (crazybob@crazybob.org)
7  */

8 public class PersonImpl implements Person {
9
10     String JavaDoc name;
11     
12     public String JavaDoc getName() {
13         return this.name;
14     }
15
16     public void setName(String JavaDoc name) {
17         this.name = name;
18     }
19 }
20
Popular Tags