1 17 package org.eclipse.emf.mapping; 18 19 20 import java.util.Collection ; 21 22 import org.eclipse.emf.edit.provider.IChangeNotifier; 23 24 25 29 public interface MappedObjectState extends IChangeNotifier 30 { 31 34 boolean isInput(); 35 36 39 void setInput(); 40 41 44 boolean isOutput(); 45 46 49 void setOutput(); 50 51 54 Object getOriginatingInput(); 55 56 59 void setOriginatingInput(Object originatingInput); 60 61 64 Collection getMappings(); 65 } 66 67 68 | Popular Tags |