001         package com.croftsoft.apps.vaft.util.broadcast;
002    
003         /*********************************************************************
004         * <P>
005         * @author
006         *   <A HREF="http://www.alumni.caltech.edu/~croft">David W. Croft</A>
007         * @version
008         *   1998-04-05
009         *********************************************************************/
010    
011         public interface  Broadcaster
012         //////////////////////////////////////////////////////////////////////
013         //////////////////////////////////////////////////////////////////////
014         {
015    
016         public boolean  addBroadcastListener ( BroadcastListener  bl );
017         public boolean  removeBroadcastListener ( BroadcastListener  bl );
018         public String   getBroadcastName ( );
019    
020         //////////////////////////////////////////////////////////////////////
021         //////////////////////////////////////////////////////////////////////
022         }