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