- java.lang.Object
-
- java.awt.event.FocusAdapter
-
- javax.swing.plaf.basic.BasicSplitPaneUI.FocusHandler
-
- All Implemented Interfaces:
FocusListener
,EventListener
- Enclosing class:
- BasicSplitPaneUI
public class BasicSplitPaneUI.FocusHandler extends FocusAdapter
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 Constructor Description FocusHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
focusGained(FocusEvent ev)
Invoked when a component gains the keyboard focus.void
focusLost(FocusEvent ev)
Invoked when a component loses the keyboard focus.
-
-
-
Method Detail
-
focusGained
public void focusGained(FocusEvent ev)
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
public void focusLost(FocusEvent ev)
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
-
-