<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * @(#)FocusAdapter.java	1.13 00/02/02
 *
 * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
 * 
 * This software is the proprietary information of Sun Microsystems, Inc.  
 * Use is subject to license terms.
 * 
 */

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.
 * &lt;P&gt;
 * Extend this class to create a &lt;code&gt;FocusEvent&lt;/code&gt; listener 
 * and override the methods for the events of interest. (If you implement the 
 * &lt;code&gt;FocusListener&lt;/code&gt; 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.)
 * &lt;P&gt;
 * Create a listener object using the extended class and then register it with 
 * a component using the component's &lt;code&gt;addFocusListener&lt;/code&gt; 
 * method. When the component gains or loses the keyboard focus,
 * the relevant method in the listener object is invoked,
 * and the &lt;code&gt;FocusEvent&lt;/code&gt; is passed to it.
 *
 * @see FocusEvent
 * @see FocusListener
 * @see &lt;a href="http://java.sun.com/docs/books/tutorial/post1.0/ui/focuslistener.html"&gt;Tutorial: Writing a Focus Listener&lt;/a&gt;
 * @see &lt;a href="http://www.awl.com/cp/javaseries/jcl1_2.html"&gt;Reference: The Java Class Libraries (update file)&lt;/a&gt;
 *
 * @author Carl Quinn
 * @version 1.13 02/02/00
 * @since 1.1
 */
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) {}
}
</pre></body></html>