FocusListenerNameFocusListener
DescriptionObjects that implement the FocusListener interface can receive FocusEvent objects. Listeners must first register themselves with objects that produce events. When events occur, they are then automatically propagated to all registered listeners. Interface Definition
public abstract interface java.awt.event.FocusListener extends java.util.EventListener { // Instance Methods public abstract void focusGained (FocusEvent e); public abstract void focusLost (FocusEvent e); } Interface MethodsfocusGainedpublic abstract void focusGained (FocusEvent e)
focusLostpublic abstract void focusLost (FocusEvent e)
See AlsoAWTEventMulticaster, EventListener, FocusAdapter, FocusEvent |
|