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