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