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