Package org.apache.openjpa.util
Interface CollectionChangeTracker
- All Superinterfaces:
ChangeTracker
- All Known Implementing Classes:
AbstractLRSProxyCollection
,CollectionChangeTrackerImpl
,DelayedCollectionChangeTrackerImpl
,LRSProxyCollection
Change tracker that can be used for collections. If the user calls
any mutating methods on the collection that do not have an equivalent in
this change tracker, then you must call
ChangeTracker.stopTracking()
after
applying the operation to the collection.- Author:
- Abe White
-
Method Summary
Methods inherited from interface org.apache.openjpa.util.ChangeTracker
getAdded, getChanged, getNextSequence, getRemoved, isTracking, setNextSequence, startTracking, stopTracking
-
Method Details
-
added
Record that the given element was added. -
removed
Record that the given element was removed.
-