package mug12; /** * Things that pretend to be interfaces to the world. * */ public interface InterfaceInterface { /** * Sends a String to all persons in a room */ public void broadcast(String message, String[] sendTo); } // interface InterfaceInterface