1234567891011
  1. /**
  2. * @author leon on 4/19/18.
  3. */
  4. public interface Animal {
  5. String speak();
  6. Integer getNumberOfMealsEaten();
  7. Integer getId();
  8. void eat(Food food);
  9. }