Flying.java



/** 空を飛ぶ能力を提供する Flying インターフェイス */

public interface Flying {

/** 空を飛ぶ能力を提供するメソッド */

       public void fly();
}