Skip navigation links

Oracle TopLink Java API Reference
10g Release 3 (10.1.3.1)

B28219-01


oracle.toplink.changesets
Interface CollectionChangeRecord

All Superinterfaces:
ChangeRecord

public interface CollectionChangeRecord
extends ChangeRecord

Purpose: This interface defines the API for the changeRecord that maintains the changes made to a collection attribute of an object.

Description: The CollectionChangeRecord stores a list of objects removed from the collection and a seperate list of objects added to a collection


Method Summary
 IdentityHashtable getAddObjectList()
          ADVANCED: This method returns the IdentityHashtable that contains the added values to the collection and their corresponding ChangeSets.
 IdentityHashtable getRemoveObjectList()
          ADVANCED: This method returns the IdentityHashtable that contains the removed values from the collection and their corresponding ChangeSets.
 boolean hasChanges()
          ADVANCED: This method returns true if the change set has changes

 

Methods inherited from interface oracle.toplink.changesets.ChangeRecord
getAttribute, getOwner

 

Method Detail

getAddObjectList

public IdentityHashtable getAddObjectList()
ADVANCED: This method returns the IdentityHashtable that contains the added values to the collection and their corresponding ChangeSets.
Returns:
java.util.Vector

getRemoveObjectList

public IdentityHashtable getRemoveObjectList()
ADVANCED: This method returns the IdentityHashtable that contains the removed values from the collection and their corresponding ChangeSets.
Returns:
java.util.Vector

hasChanges

public boolean hasChanges()
ADVANCED: This method returns true if the change set has changes
Returns:
boolean

Skip navigation links

Copyright © 1998, 2006, Oracle. All Rights Reserved.