Module java.desktop
Package javax.swing
Class JComponent.AccessibleJComponent.AccessibleFocusHandler
- java.lang.Object
-
- javax.swing.JComponent.AccessibleJComponent.AccessibleFocusHandler
-
- All Implemented Interfaces:
FocusListener
,EventListener
- Enclosing class:
- JComponent.AccessibleJComponent
Deprecated.This class is no longer used or needed.java.awt.Component.AccessibleAWTComponent
provides the same functionality and it is handled inComponent
.
@Deprecated protected class JComponent.AccessibleJComponent.AccessibleFocusHandler 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
AccessibleFocusHandler()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
focusGained(FocusEvent event)
Deprecated.Invoked when a component gains the keyboard focus.void
focusLost(FocusEvent event)
Deprecated.Invoked when a component loses the keyboard focus.
-
-
-
Method Detail
-
focusGained
public void focusGained(FocusEvent event)
Deprecated.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)
Deprecated.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
-
-