1 17 package org.eclipse.emf.edit.provider; 18 19 20 import org.eclipse.emf.common.notify.Notification; 21 22 23 27 public interface IChangeNotifier 28 { 29 32 void fireNotifyChanged(Notification notification); 33 34 37 void addListener(INotifyChangedListener notifyChangedListener); 38 39 42 void removeListener(INotifyChangedListener notifyChangedListener); 43 } 44 | Popular Tags |