/* * Filename: CalendarComboBoxListener.java * Notes: updated 29APR06 */ //package webcal.util; /** * The listener interface for receiving CalendarComboBox events. The class that is interested * in processing a date selection event implements this interface, and the object created with that class is * registered with a component, using the component's addCalendarComboBoxListener method. When a date is * selected (either by clicking on a date or changing the month), that object's selectionMade method is invoked. * * @author David Underhill */ public interface CalendarComboBoxListener { /** * A selection has been made (not neccessarily a change) */ public void selectionMade(); }