1 package dynaop.example;2 3 import java.util.ArrayList ;4 import java.util.List ;5 6 /**7 * Author mixin implementation.8 * 9 * @author Bob Lee (crazybob@crazybob.org)10 */11 public class AuthorMixin implements Author {12 13 List books = new ArrayList ();14 15 public List getBooks() {16 return this.books;17 }18 }19