1 | public void addListener(INotifyChangedListener notifyChangedListener)↵ | | 1 | public void addListener(INotifyChangedListener notifyChangedListener)↵
|
2 | {↵ | | 2 | {↵
|
3 | changeNotifier.add(notifyChangedListener);↵ | | 3 | changeNotifier.addListener(notifyChangedListener);↵
|
4 | }↵ | | 4 | }↵
|
|
5 | public void removeListener(INotifyChangedListener notifyChangedListener)↵ | | 5 | public void removeListener(INotifyChangedListener notifyChangedListener)↵
|
6 | {↵ | | 6 | {↵
|
7 | changeNotifier.remove(notifyChangedListener);↵ | | 7 | changeNotifier.removeListener(notifyChangedListener);↵
|
8 | }↵ | | 8 | }↵
|
|
9 | public void fireNotifyChanged(Notification notification)↵ | | 9 | public void fireNotifyChanged(Notification notification)↵
|
10 | {↵ | | 10 | {↵
|
11 | changeNotifier.fireNotifyChanged(notification);↵ | | 11 | changeNotifier.fireNotifyChanged(notification);↵
|
|
12 | if (parentAdapterFactory != null)↵ | | 12 | if (parentAdapterFactory != null)↵
|
13 | {↵ | | 13 | {↵
|
14 | parentAdapterFactory.fireNotifyChanged(notification); | | 14 | parentAdapterFactory.fireNotifyChanged(notification);
|