package project; /** * Things that pretend to be interfaces to the world. * * @author CSC152 2004F * @version 1.0 of November 2004 */ public interface InterfaceInterface { /** * Sends a String to all persons in a room */ public void broadcast(String message, String[] sendTo); } // interface InterfaceInterface