1 package dynaop.example; 2 3 /** 4 * Helper interface. Extends all interfaces that will be attached to Person. 5 * Reduces need for casting. 6 * 7 * @author Bob Lee (crazybob@crazybob.org) 8 */ 9 public interface PersonProxy extends Person, Author, Identifiable, 10 EmailAware { 11 12 } 13