package JavaDesignModel; /** * @author hanshizhe * 中介者模式 */ public interface Mediator { public void creatMediator(); public void workAll(); }