1 package dynaop.example;2 3 import java.util.List ;4 5 /**6 * Author.7 * 8 * @author Bob Lee (crazybob@crazybob.org)9 */10 public interface Author {11 12 /**13 * Gets authored books.14 */15 List getBooks();16 }