Class UIFocusAdapter
public abstract class UIFocusAdapter implements
IUIFocusListener
{
// Methods
public void focusGained(UIFocusEvent e);
public void focusLost(UIFocusEvent e);
}
This class is the listener adapter for receiving focus events on an IUIComponent.
public void focusGained(UIFocusEvent e);
Invoked when a IUIComponent gains the keyboard focus.
Return Value:
No return value.
Parameter | Description |
e
| The FOCUS_GAINED event that was posted.
|
public void focusLost(UIFocusEvent e);
Invoked when a IUIComponent loses the keyboard focus.
Return Value:
No return value.
Parameter | Description |
e
| The FOCUS_LOST event that was posted.
|