1 17 package org.eclipse.emf.common.notify; 18 19 20 21 25 public interface AdapterFactory 26 { 27 33 boolean isFactoryForType(Object type); 34 35 44 Object adapt(Object object, Object type); 45 46 57 Adapter adapt(Notifier target, Object type); 58 59 70 Adapter adaptNew(Notifier target, Object type); 71 72 78 void adaptAllNew(Notifier notifier); 79 } 80 | Popular Tags |