org.apache.commons.collections.collection
Interface CompositeCollection.CollectionMutator<E>

All Known Subinterfaces:
CompositeSet.SetMutator<E>
Enclosing class:
CompositeCollection<E>

public static interface CompositeCollection.CollectionMutator<E>

Pluggable strategy to handle changes to the composite.


Method Summary
 boolean add(CompositeCollection<? extends E> composite, Collection<? extends E>[] collections, Object obj)
          Called when an object is to be added to the composite.
 boolean addAll(CompositeCollection<? extends E> composite, Collection<? extends E>[] collections, Collection<? extends E> coll)
          Called when a collection is to be added to the composite.
 boolean remove(CompositeCollection<? extends E> composite, Collection<? extends E>[] collections, Object obj)
          Called when an object is to be removed to the composite.
 

Method Detail

add

boolean add(CompositeCollection<? extends E> composite,
            Collection<? extends E>[] collections,
            Object obj)
Called when an object is to be added to the composite.

Parameters:
composite - the CompositeCollection being changed
collections - all of the Collection instances in this CompositeCollection
obj - the object being added
Returns:
true if the collection is changed
Throws:
UnsupportedOperationException - if add is unsupported
ClassCastException - if the object cannot be added due to its type
NullPointerException - if the object cannot be added because its null
IllegalArgumentException - if the object cannot be added

addAll

boolean addAll(CompositeCollection<? extends E> composite,
               Collection<? extends E>[] collections,
               Collection<? extends E> coll)
Called when a collection is to be added to the composite.

Parameters:
composite - the CompositeCollection being changed
collections - all of the Collection instances in this CompositeCollection
coll - the collection being added
Returns:
true if the collection is changed
Throws:
UnsupportedOperationException - if add is unsupported
ClassCastException - if the object cannot be added due to its type
NullPointerException - if the object cannot be added because its null
IllegalArgumentException - if the object cannot be added

remove

boolean remove(CompositeCollection<? extends E> composite,
               Collection<? extends E>[] collections,
               Object obj)
Called when an object is to be removed to the composite.

Parameters:
composite - the CompositeCollection being changed
collections - all of the Collection instances in this CompositeCollection
obj - the object being removed
Returns:
true if the collection is changed
Throws:
UnsupportedOperationException - if removed is unsupported
ClassCastException - if the object cannot be removed due to its type
NullPointerException - if the object cannot be removed because its null
IllegalArgumentException - if the object cannot be removed


Copyright © 2005-2005 Apache Software Foundation, Matt Hall, John Watkinson. All Rights Reserved.