import java.awt.event.*;


/**
 * A controller for a ControllableAlarmClock class
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public class AlarmController implements ActionListener
{
    private ControllableAlarmClock       clock;
    
    /**
     * Explicit Value Constructor
     *
     * @param clock   The clock to be controller
     */
    public AlarmController(ControllableAlarmClock clock)
    {
       this.clock = clock;       
    }
    




    /**
     * Handle actionPerformed calls from buttons on the GUI
     * (required by ActionListener)
     *
     * @param event   The ActionEvent containing details
     */
    public void actionPerformed(ActionEvent event)
    {
       String      ac;
       

       ac = event.getActionCommand();
       

    }
    

}
