Class BasicSplitPaneUI.FocusHandler
java.lang.Object
java.awt.event.FocusAdapter
javax.swing.plaf.basic.BasicSplitPaneUI.FocusHandler
- All Implemented Interfaces:
FocusListener, EventListener
- Enclosing class:
BasicSplitPaneUI
Implementation of the FocusListener that the JSplitPane UI uses.
This class should be treated as a "protected" inner class. Instantiate it only within subclasses of BasicSplitPaneUI.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Invoked when a component gains the keyboard focus.void
focusLost
(FocusEvent ev) Invoked when a component loses the keyboard focus.
-
Constructor Details
-
FocusHandler
public FocusHandler()Constructs aFocusHandler
.
-
-
Method Details
-
focusGained
Description copied from class:FocusAdapter
Invoked when a component gains the keyboard focus.- Specified by:
focusGained
in interfaceFocusListener
- Overrides:
focusGained
in classFocusAdapter
- Parameters:
ev
- the event to be processed
-
focusLost
Description copied from class:FocusAdapter
Invoked when a component loses the keyboard focus.- Specified by:
focusLost
in interfaceFocusListener
- Overrides:
focusLost
in classFocusAdapter
- Parameters:
ev
- the event to be processed
-