1 21 package oracle.toplink.essentials.changesets; 23 24 import oracle.toplink.essentials.internal.helper.IdentityHashtable; 25 26 34 public interface CollectionChangeRecord extends ChangeRecord { 35 36 42 public IdentityHashtable getAddObjectList(); 43 44 50 public IdentityHashtable getRemoveObjectList(); 51 52 57 public boolean hasChanges(); 58 } 59 | Popular Tags |