Package com.vaadin.event
Interface FieldEvents.BlurListener
-
- All Superinterfaces:
ConnectorEventListener,java.util.EventListener,java.io.Serializable,SerializableEventListener
- Enclosing interface:
- FieldEvents
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface FieldEvents.BlurListener extends ConnectorEventListener
BlurListenerinterface for listening forBlurEventfired by aField.- Since:
- 6.2
- See Also:
FieldEvents.BlurEvent
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.reflect.MethodblurMethod
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidblur(FieldEvents.BlurEvent event)Component has been blurred.
-
-
-
Method Detail
-
blur
void blur(FieldEvents.BlurEvent event)
Component has been blurred.- Parameters:
event- Component blur event.
-
-