1 | public void addListener(INotifyChangedListener notifyChangedListener)↵ | | 1 | public void addListener(INotifyChangedListener notifyChangedListener)↵
|
2 | {↵ | | 2 | {↵
|
3 | changeNotifier.addListener(notifyChangedListener);↵ | | 3 | changeNotifier.addListener(notifyChangedListener);↵
|
4 | }↵ | | 4 | }↵
|
|
5 | /**↵ | | 5 | /**↵
|
6 | * This removes a listener.↵ | | 6 | * This removes a listener.↵
|
7 | * @generated↵ | | |
|
8 | */↵ | | 7 | */↵
|
9 | public void removeListener(INotifyChangedListener notifyChangedListener)↵ | | 8 | public void removeListener(INotifyChangedListener notifyChangedListener)↵
|
10 | {↵ | | 9 | {↵
|
11 | changeNotifier.removeListener(notifyChangedListener);↵ | | 10 | changeNotifier.removeListener(notifyChangedListener);↵
|
12 | }↵ | | 11 | }↵
|
|
13 | /**↵ | | 12 | /**↵
|
14 | * This delegates to {@link #changeNotifier} and to {@link #parentAdapterFactory}.↵ | | 13 | * This delegates to {@link #changeNotifier} and to {@link #parentAdapterFactory}.↵
|
15 | * @generated↵ | | |
|
16 | */↵ | | 14 | */↵
|
17 | public void fireNotifyChanged(Notification notification)↵ | | 15 | public void fireNotifyChanged(Notification msg)↵
|
18 | {↵ | | 16 | {↵
|
19 | changeNotifier.fireNotifyChanged(notification);↵ | | 17 | changeNotifier.fireNotifyChanged(msg);↵
|
|
20 | if (parentAdapterFactory != null)↵ | | 18 | if (parentAdapterFactory != null)↵
|
21 | {↵ | | 19 | {↵
|
22 | parentAdapterFactory.fireNotifyChanged(notification); | | 20 | parentAdapterFactory.fireNotifyChanged(msg);
|