com.vaadin.event.
Interface FieldEvents.BlurNotifier
-
All Superinterfaces:
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:
public static interface FieldEvents.BlurNotifier extends Serializable
The interface for adding and removing
BlurEvent
listeners. By implementing this interface a class explicitly announces that it will generate aBlurEvent
when it loses keyboard focus.Since:
6.2
See Also:
-
-
Method Summary
All Methods Modifier and Type Method Description Registration
addBlurListener​(FieldEvents.BlurListener listener)
Adds a
BlurListener
to the Component which gets fired when aField
loses keyboard focus.
-
-
-
Method Detail
-
addBlurListener
Registration addBlurListener​(FieldEvents.BlurListener listener)
Adds a
BlurListener
to the Component which gets fired when aField
loses keyboard focus.Parameters:
listener
- the blur listener to add, not nullReturns:
a registration object for removing the listener
Since:
8.0
See Also:
-
-