001package headfirst.strategy;
002
003public class FlyNoWay implements FlyBehavior {
004        public void fly() {
005                System.out.println("I can't fly");
006        }
007}