001         package com.croftsoft.core.gui.event;
002    
003         import java.awt.event.*;
004         import javax.swing.event.*;
005    
006         /*********************************************************************
007         * Extends many of the AWT and Swing listeners.
008         *
009         * @version
010         *   $Id: UserInputListener.java,v 1.4 2006/01/07 03:29:48 croft Exp $
011         * @since
012         *   2003-03-29
013         * @author
014         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
015         *********************************************************************/
016    
017         public interface  UserInputListener
018           extends ActionListener, ChangeListener, KeyListener,
019             MouseInputListener, WindowListener
020         //////////////////////////////////////////////////////////////////////
021         //////////////////////////////////////////////////////////////////////
022         {
023    
024         //////////////////////////////////////////////////////////////////////
025         //////////////////////////////////////////////////////////////////////
026         }