1 package polyglot.types; 2 3 6 public interface FieldInstance extends VarInstance, MemberInstance 7 { 8 11 FieldInstance flags(Flags flags); 12 13 16 FieldInstance name(String name); 17 18 21 FieldInstance type(Type type); 22 23 26 FieldInstance container(ReferenceType container); 27 28 33 FieldInstance constantValue(Object value); 34 35 40 void setConstantValue(Object value); 41 } 42 | Popular Tags |