1 23 24 32 33 package com.sun.jdo.spi.persistence.support.sqlstore; 34 import java.util.Collection ; 35 36 public interface SCOCollection extends java.util.Collection , SCO 37 { 38 41 void reset(); 42 43 47 void markDeferred(); 48 49 53 boolean isDeferred(); 54 55 60 void applyDeferredUpdates(Collection c); 61 62 66 void addInternal(Object o); 67 68 72 void addAllInternal(Collection c); 73 74 77 void addToBaseCollection(Object o); 78 79 83 void removeAllInternal(Collection c); 84 85 89 void clearInternal(); 90 91 92 96 void removeInternal(Object o); 97 98 103 Collection getAdded(); 104 105 110 Collection getRemoved(); 111 112 123 void setOwner(Object owner, String fieldName, Class elementType); 124 125 } 126 | Popular Tags |