KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dynaop > example > Person


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

8 public interface Person {
9
10     /**
11      * Gets name.
12      */

13     String JavaDoc getName();
14     
15     /**
16      * Sets name.
17      */

18     void setName(String JavaDoc name);
19 }
20
Popular Tags