1 package polyglot.types; 2 3 /** 4 * A <code>MemberInstance</code> is an entity that can be a member of 5 * a class. 6 */ 7 public interface MemberInstance extends TypeObject 8 { 9 /** 10 * Return the member's flags. 11 */ 12 Flags flags(); 13 14 /** 15 * Return the member's containing type. 16 */ 17 ReferenceType container(); 18 } 19