You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. package coordination;
  2. interface Exclusion {
  3. boolean testExclusion(String methodName);
  4. void enterExclusion(String methodName);
  5. void exitExclusion(String methodName);
  6. // for debug !!!
  7. void printNames();
  8. }