Module java.desktop
Package java.awt
Class Component.AccessibleAWTComponent.AccessibleAWTFocusHandler
- java.lang.Object
-
- java.awt.Component.AccessibleAWTComponent.AccessibleAWTFocusHandler
-
- All Implemented Interfaces:
FocusListener
,EventListener
- Enclosing class:
- Component.AccessibleAWTComponent
protected class Component.AccessibleAWTComponent.AccessibleAWTFocusHandler extends Object implements FocusListener
Fire PropertyChange listener, if one is registered, when focus events happen- Since:
- 1.3
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AccessibleAWTFocusHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
focusGained(FocusEvent event)
Invoked when a component gains the keyboard focus.void
focusLost(FocusEvent event)
Invoked when a component loses the keyboard focus.
-
-
-
Method Detail
-
focusGained
public void focusGained(FocusEvent event)
Description copied from interface:FocusListener
Invoked when a component gains the keyboard focus.- Specified by:
focusGained
in interfaceFocusListener
- Parameters:
event
- the event to be processed
-
focusLost
public void focusLost(FocusEvent event)
Description copied from interface:FocusListener
Invoked when a component loses the keyboard focus.- Specified by:
focusLost
in interfaceFocusListener
- Parameters:
event
- the event to be processed
-
-