T
- The type of elements in the changed ObservableCollection
.public interface ICollectionObserver<T>
ObservableCollection
.Modifier and Type | Method and Description |
---|---|
void |
onCollectionChanged(ObservableCollection<T> collection,
CollectionChangedEventArgs<T> args)
Called when
ObservableCollection changes. |
void onCollectionChanged(ObservableCollection<T> collection, CollectionChangedEventArgs<T> args) throws java.lang.Exception
ObservableCollection
changes.collection
- The collection which changed.args
- The CollectionChangedEventArgs
instance with changes in collection.java.lang.Exception
- The thrown Exception
instance.