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