Package com.vaadin.event
Interface FieldEvents.BlurNotifier
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractDateField
,AbstractFocusable
,AbstractLocalDateField
,AbstractLocalDateTimeField
,AbstractTextField
,Accordion
,Button
,CheckBox
,CheckBoxGroup
,ColorPickerPopup
,ComboBox
,DateField
,DateTimeField
,InlineDateField
,InlineDateTimeField
,NativeButton
,NativeSelect
,PasswordField
,RadioButtonGroup
,TabSheet
,TextArea
,TextField
,Window
- Enclosing interface:
- FieldEvents
public static interface FieldEvents.BlurNotifier extends Serializable
The interface for adding and removingBlurEvent
listeners. By implementing this interface a class explicitly announces that it will generate aBlurEvent
when it loses keyboard focus.- Since:
- 6.2
- See Also:
FieldEvents.BlurListener
,FieldEvents.BlurEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Registration
addBlurListener(FieldEvents.BlurListener listener)
Adds aBlurListener
to the Component which gets fired when aField
loses keyboard focus.
-
-
-
Method Detail
-
addBlurListener
Registration addBlurListener(FieldEvents.BlurListener listener)
Adds aBlurListener
to the Component which gets fired when aField
loses keyboard focus.- Parameters:
listener
- the blur listener to add, not null- Returns:
- a registration object for removing the listener
- Since:
- 8.0
- See Also:
FieldEvents.BlurListener
,Registration
-
-