001 package com.croftsoft.apps.vaft.util.broadcast;
002
003 import java.util.EventListener;
004
005 /*********************************************************************
006 * <P>
007 * @author
008 * <A HREF="http://www.alumni.caltech.edu/~croft">David W. Croft</A>
009 * @version
010 * 1998-04-06
011 *********************************************************************/
012
013 public interface BroadcastListener extends EventListener
014 //////////////////////////////////////////////////////////////////////
015 //////////////////////////////////////////////////////////////////////
016 {
017
018 public void broadcastSent ( BroadcastEvent broadcastEvent );
019
020 //////////////////////////////////////////////////////////////////////
021 //////////////////////////////////////////////////////////////////////
022 }