Interface FormFocusListener
-
- All Superinterfaces:
EventListener
,FormEventListener
- All Known Implementing Classes:
FormController
,FormValidationTriggerFocus
public interface FormFocusListener extends FormEventListener
Definition of an interface for focus listeners.
Objects that are interested in
notifications must implement this interface.FormFocusEvent
- Version:
- $Id: FormFocusListener.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
focusGained(FormFocusEvent e)
This method gets called when a component this listener is registered at gaines focus.void
focusLost(FormFocusEvent e)
This method gets called when a component this listener is registered at loses focus.
-
-
-
Method Detail
-
focusGained
void focusGained(FormFocusEvent e)
This method gets called when a component this listener is registered at gaines focus.- Parameters:
e
- the event object
-
focusLost
void focusLost(FormFocusEvent e)
This method gets called when a component this listener is registered at loses focus.- Parameters:
e
- the event object
-
-