|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CollectionObserver<E>
CollectionObservers can be attached to observable collections and receive notification when these collections are modified.
Method Summary | |
---|---|
void |
added(ObservableCollection sender,
E e)
Fired immediately after an element has been added to an observable collection. |
void |
removed(ObservableCollection sender,
E e)
Fired immediately after an element has been removed from an observable collection. |
Method Detail |
---|
void added(ObservableCollection sender, E e)
sender
- the ObservableCollection that has been modified.e
- the Object that has been added to the collection.void removed(ObservableCollection sender, E e)
sender
- the ObservableCollection that has been modified.e
- the Object that has been removed from the collection.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |