/* * Author: CHEN Yongyuan (Walter) 1930006025 from OOP(1007) * Date: 2022/04/03 * Description: This is the interface of Flyer. */ public interface Flyer { public String getName(); public boolean canFly(); public boolean isDangerous(); }