Interface ChangeHandler<C,T>
- Type Parameters:
C- The type of the component.T- The type of the value.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface for handling change events.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <C,T> void fireIfChanged(C component, T oldValue, T value, List<ChangeHandler<C, T>> changeHandlers) void
-
Method Details
-
fireIfChanged
static <C,T> void fireIfChanged(C component, T oldValue, T value, List<ChangeHandler<C, T>> changeHandlers) -
onChange
-