1 14 package commonj.sdo; 15 16 import java.util.List ; 17 18 22 public interface ChangeSummary 23 { 24 29 void beginLogging(); 30 31 36 void endLogging(); 37 38 44 boolean isLogging(); 45 46 51 DataGraph getDataGraph(); 52 53 66 List getChangedDataObjects(); 67 68 77 boolean isCreated(DataObject dataObject); 78 79 86 boolean isDeleted(DataObject dataObject); 87 88 91 public interface Setting 92 { 93 97 Property getProperty(); 98 99 103 Object getValue(); 104 105 109 boolean isSet(); 110 } 111 112 122 List getOldValues(DataObject dataObject); 123 } 124 | Popular Tags |