KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > dynaop > example > AuthorMixin


1 package dynaop.example;
2
3 import java.util.ArrayList JavaDoc;
4 import java.util.List JavaDoc;
5
6 /**
7  * Author mixin implementation.
8  *
9  * @author Bob Lee (crazybob@crazybob.org)
10  */

11 public class AuthorMixin implements Author {
12
13     List JavaDoc books = new ArrayList JavaDoc();
14     
15     public List JavaDoc getBooks() {
16         return this.books;
17     }
18 }
19
Popular Tags