package Strategy; // strategy -- fail to fly public class DontFly implements FlyStrategy { public void fly(int distance, String d) { System.out.println("I stumble but fail to fly"); } }