Eating.java



/** 食事をする能力を提供する Eating インターフェイス */

public interface Eating {

/** 食事をする能力を提供するメソッド */

       public void eat();
}