Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

JSR 217 (Maintenance Release)

Uses of Interface
java.awt.event.FocusListener

Packages that use FocusListener
java.awt Contains all of the classes for creating user interfaces and for painting graphics and images. 
java.awt.event Provides interfaces and classes for dealing with different types of events fired by AWT components. 
 

Uses of FocusListener in java.awt
 

Classes in java.awt that implement FocusListener
 class AWTEventMulticaster
          A class which implements efficient and thread-safe multi-cast event dispatching for the AWT events defined in the java.awt.event package.
 

Methods in java.awt that return FocusListener
 FocusListener[] Component.getFocusListeners()
          Returns an array of all the focus listeners registered on this component.
static FocusListener AWTEventMulticaster.add(FocusListener a, FocusListener b)
          Adds focus-listener-a with focus-listener-b and returns the resulting multicast listener.
static FocusListener AWTEventMulticaster.remove(FocusListener l, FocusListener oldl)
          Removes the old focus-listener from focus-listener-l and returns the resulting multicast listener.
 

Methods in java.awt with parameters of type FocusListener
 void Component.addFocusListener(FocusListener l)
          Adds the specified focus listener to receive focus events from this component when this component gains input focus.
 void Component.removeFocusListener(FocusListener l)
          Removes the specified focus listener so that it no longer receives focus events from this component.
static FocusListener AWTEventMulticaster.add(FocusListener a, FocusListener b)
          Adds focus-listener-a with focus-listener-b and returns the resulting multicast listener.
static FocusListener AWTEventMulticaster.remove(FocusListener l, FocusListener oldl)
          Removes the old focus-listener from focus-listener-l and returns the resulting multicast listener.
 

Uses of FocusListener in java.awt.event
 

Classes in java.awt.event that implement FocusListener
 class FocusAdapter
          An abstract adapter class for receiving keyboard focus events.
 


JSR 217 (Maintenance Release)

Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 217 specification.