1 17 package org.eclipse.emf.common.notify; 18 19 20 21 25 public interface Adapter 26 { 27 31 void notifyChanged(Notification notification); 32 33 39 Notifier getTarget(); 40 41 49 void setTarget(Notifier newTarget); 50 51 58 boolean isAdapterForType(Object type); 59 60 64 interface Internal extends Adapter 65 { 66 75 void unsetTarget(Notifier oldTarget); 76 } 77 } 78 | Popular Tags |