001 package com.croftsoft.core.gui.event;
002
003 import java.awt.event.*;
004 import javax.swing.event.*;
005
006 /*********************************************************************
007 * Adapter for interface UserInputListener.
008 *
009 * @version
010 * $Id: UserInputAdapter.java,v 1.5 2008/08/30 00:52:34 croft Exp $
011 * @since
012 * 2003-03-29
013 * @author
014 * <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
015 *********************************************************************/
016
017 @SuppressWarnings ( "all" )
018 public class UserInputAdapter
019 implements UserInputListener
020 //////////////////////////////////////////////////////////////////////
021 //////////////////////////////////////////////////////////////////////
022 {
023
024 //////////////////////////////////////////////////////////////////////
025 // interface ActionListener method
026 //////////////////////////////////////////////////////////////////////
027
028 public void actionPerformed ( ActionEvent actionEvent ) { }
029
030 //////////////////////////////////////////////////////////////////////
031 // interface ChangeListener method
032 //////////////////////////////////////////////////////////////////////
033
034 public void stateChanged ( ChangeEvent changeEvent ) { }
035
036 //////////////////////////////////////////////////////////////////////
037 // interface KeyListener methods
038 //////////////////////////////////////////////////////////////////////
039
040 public void keyPressed ( KeyEvent keyEvent ) { }
041
042 public void keyReleased ( KeyEvent keyEvent ) { }
043
044 public void keyTyped ( KeyEvent keyEvent ) { }
045
046 //////////////////////////////////////////////////////////////////////
047 // interface MouseInputListener methods
048 //////////////////////////////////////////////////////////////////////
049
050 public void mouseClicked ( MouseEvent mouseEvent ) { }
051
052 public void mouseDragged ( MouseEvent mouseEvent ) { }
053
054 public void mouseEntered ( MouseEvent mouseEvent ) { }
055
056 public void mouseExited ( MouseEvent mouseEvent ) { }
057
058 public void mouseMoved ( MouseEvent mouseEvent ) { }
059
060 public void mousePressed ( MouseEvent mouseEvent ) { }
061
062 public void mouseReleased ( MouseEvent mouseEvent ) { }
063
064 //////////////////////////////////////////////////////////////////////
065 // interface WindowListener methods
066 //////////////////////////////////////////////////////////////////////
067
068 public void windowActivated ( WindowEvent windowEvent ) { }
069
070 public void windowClosed ( WindowEvent windowEvent ) { }
071
072 public void windowClosing ( WindowEvent windowEvent ) { }
073
074 public void windowDeactivated ( WindowEvent windowEvent ) { }
075
076 public void windowDeiconified ( WindowEvent windowEvent ) { }
077
078 public void windowIconified ( WindowEvent windowEvent ) { }
079
080 public void windowOpened ( WindowEvent windowEvent ) { }
081
082 //////////////////////////////////////////////////////////////////////
083 //////////////////////////////////////////////////////////////////////
084 }