package Strategy; // a method for flying that can be used by other classes public interface FlyStrategy { // how to fly, given the distance and direction public void fly(int distance, String dir); }