| org.jpox.sco.SCOCollection
All known Subclasses: org.jpox.sco.LinkedHashSet, org.jpox.sco.simple.LinkedHashSet, org.jpox.sco.Set, org.jpox.sco.simple.TreeSet, org.jpox.sco.simple.SortedSet, org.jpox.sco.simple.Queue, org.jpox.sco.HashSet, org.jpox.sco.simple.Set, org.jpox.sco.PriorityQueue, org.jpox.sco.simple.PriorityQueue, org.jpox.sco.Collection, org.jpox.sco.TreeSet, org.jpox.sco.Queue, org.jpox.sco.simple.Collection, org.jpox.sco.SortedSet, org.jpox.sco.simple.HashSet,
SCOCollection | public interface SCOCollection extends SCOContainer(Code) | | Representation of a wrapper for a mutable Collection SCO type supported by JPOX.
version: $Revision: 1.8 $ |
Method Summary | |
public boolean | remove(Object element, boolean allowCascadeDelete) Method to remove an element from the collection, and observe the flag for whether to allow cascade delete. | public void | updateEmbeddedElement(Object element, int fieldNumber, Object value) |
remove | public boolean remove(Object element, boolean allowCascadeDelete)(Code) | | Method to remove an element from the collection, and observe the flag for whether to allow cascade delete.
Parameters: element - The element Parameters: allowCascadeDelete - Whether to allow cascade delete Whether the element was removed |
updateEmbeddedElement | public void updateEmbeddedElement(Object element, int fieldNumber, Object value)(Code) | | Method to update an embedded element stored in the collection
Parameters: element - The element Parameters: fieldNumber - Number of field in the element Parameters: value - th enew value for this field |
|
|