1 /*2 SwingWT3 Copyright(c)2003-2004, R. Rawson-Tetley4 5 For more information on distributing and using this program, please6 see the accompanying "COPYING" file.7 Contact me by electronic mail: bobintetley@users.sourceforge.net8 9 $Log: FocusListener.java,v $10 Revision 1.5 2003/12/14 09:13:38 bobintetley11 Added CVS log to source headers12 13 */14 15 16 package swingwt.awt.event;17 18 19 public interface FocusListener extends EventListener {20 public void focusGained(FocusEvent e);21 public void focusLost(FocusEvent e);22 }23