Package org.patternfly.filter
Interface FilterChangeHandler<T>
- Type Parameters:
T- the type of objects that the filter will be applied to
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The FilterChangeHandler interface is designed to handle changes in filters. It declares a single method, onFilterChange, to
be implemented by any class that wishes to respond to changes in filter criteria.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonFilterChange(Filter<T> filter, String origin) Called when there is a change in the filter criteria.
-
Method Details
-
onFilterChange
Called when there is a change in the filter criteria.- Parameters:
filter- the updated filter that is being appliedorigin- a string indicating the origin or source of the filter change (can be null)
-