1 package polyglot.ext.coffer.ast; 2 3 import polyglot.ast.*; 4 import java.util.*; 5 6 9 public interface CofferMethodDecl extends MethodDecl { 10 KeySetNode entryKeys(); 11 CofferMethodDecl entryKeys(KeySetNode entryKeys); 12 13 KeySetNode returnKeys(); 14 CofferMethodDecl returnKeys(KeySetNode returnKeys); 15 16 List throwConstraints(); 17 CofferMethodDecl throwConstraints(List throwConstraints); 18 } 19 | Popular Tags |