home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-20 | 2.0 KB | 53 lines |
- /*
- * @(#)FocusAdapter.java 1.9 98/03/18
- *
- * Copyright 1996, 1997 by Sun Microsystems, Inc.,
- * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
- * All rights reserved.
- *
- * This software is the confidential and proprietary information
- * of Sun Microsystems, Inc. ("Confidential Information"). You
- * shall not disclose such Confidential Information and shall use
- * it only in accordance with the terms of the license agreement
- * you entered into with Sun.
- */
-
- package java.awt.event;
-
- /**
- * An abstract adapter class for receiving keyboard focus events.
- * The methods in this class are empty. This class exists as
- * convenience for creating listener objects.
- * <P>
- * Extend this class to create a <code>FocusEvent</code> listener
- * and override the methods for the events of interest. (If you implement the
- * <code>FocusListener</code> interface, you have to define all of
- * the methods in it. This abstract class defines null methods for them
- * all, so you can only have to define methods for events you care about.)
- * <P>
- * Create a listener object using the extended class and then register it with
- * a component using the component's <code>addFocusListener</code>
- * method. When the component gains or loses the keyboard focus,
- * the relevant method in the listener object is invoked,
- * and the <code>FocusEvent</code> is passed to it.
- *
- * @see FocusEvent
- * @see FocusListener
- * @see <a href="http://java.sun.com/docs/books/tutorial/post1.0/ui/focuslistener.html">Tutorial: Writing a Focus Listener</a>
- * @see <a href="http://www.awl.com/cp/javaseries/jcl1_2.html">Reference: The Java Class Libraries (update file)</a>
- *
- * @version 1.9 03/18/98
- * @author Carl Quinn
- */
- public abstract class FocusAdapter implements FocusListener {
- /**
- * Invoked when a component gains the keyboard focus.
- */
- public void focusGained(FocusEvent e) {}
-
- /**
- * Invoked when a component loses the keyboard focus.
- */
- public void focusLost(FocusEvent e) {}
- }
-