T
- The type of the list elements.public interface IListObserver<T>
IListObserver
can be used to monitor changes made to an
ObservableList
.Modifier and Type | Method and Description |
---|---|
void |
afterChange(ObservableList<T> observableList,
java.util.List<T> previousList)
Called when changes are made to an
ObservableList where this
IListObserver is registered. |
void afterChange(ObservableList<T> observableList, java.util.List<T> previousList)
ObservableList
where this
IListObserver
is registered.observableList
- The ObservableList
that changed.previousList
- A copy of the list before the change.Copyright (c) 2014 itemis AG and others. All rights reserved.