/** * Extraterrestrial Government Composite organization * COM1204 example. * @author The Class * @version 6/26/2003 */ public interface ETGovernment { void add(ETGovernment e); void describe(); } // ETGovernment