1 package polyglot.ext.coffer.types; 2 3 import polyglot.types.*; 4 import java.util.*; 5 6 /** Coffer method instance. A wrapper of all the type information related to 7 * a method. 8 */ 9 public interface CofferMethodInstance extends MethodInstance, CofferProcedureInstance 10 { 11 } 12