Package com.vaadin.flow.data.binder
Interface BindingValidationStatusHandler
- All Superinterfaces:
EventListener
,Serializable
,SerializableEventListener
- 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 interface BindingValidationStatusHandler
extends SerializableEventListener
Handler for
BindingValidationStatus
changes.
Binder.BindingBuilder.withValidationStatusHandler(BindingValidationStatusHandler)
Register} an instance of this class to be able to override the default
handling.
- Since:
- 1.0
- Author:
- Vaadin Ltd
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
statusChange
(BindingValidationStatus<?> statusChange) Invoked when the validation status has changed in a binding.
-
Method Details
-
statusChange
Invoked when the validation status has changed in a binding.- Parameters:
statusChange
- the changed status
-