001package headfirst.strategy;
002
003public interface FlyBehavior {
004        public void fly();
005}