ru.biosoft.access
Interface CollectionUnion
- All Known Implementing Classes:
- DataCollectionUnion, DataCollectionUnion2
- public interface CollectionUnion
- extends DataCollection
Collection that is union of several collections.
| Fields inherited from interface ru.biosoft.access.DataCollection |
CHILDREN_NODE_IMAGE, CHILDREN_NODE_VISIBLE, CLASS_PROPERTY, CLASSPATH_JAR_PROPERTY, COMPARATOR_OBJECT, CONFIG_PATH_PROPERTY, DEFAULT_CONFIG_FILE, DEFAULT_CONFIG_SUFFIX, DEFAULT_FILTER_CONFIG_SUFFIX, DEFAULT_FORMAT_CONFIG_SUFFIX, DEFAULT_NODE_CONFIG_SUFFIX, DEFAULT_REPOSITORY, DISPLAY_NAME_PROPERTY, FILE_PATH_PROPERTY, FILE_PROPERTY, FILTER_PROPERTY, JOB_CONTROL_PROPERTY, LATE_CHILDREN_INITIALIZATION, MUTABLE, NAME_PROPERTY, NEXT_CONFIG, NODE_IMAGE, NODE_VISIBLE, TRANSFORMER_CLASS |
| Method Summary |
void | addCollection(DataCollection dc) Add all elements from specified collection to union. |
void | removeCollection(String name) Removes all elements contained in collection with specified name from union. |
| Methods inherited from interface ru.biosoft.access.DataCollection |
addDataCollectionListener, close, contains, contains, get, getCompleteName, getDataElementType, getInfo, getNameList, getSize, init, isMutable, iterator, propagateElementChanged, propagateElementWillChange, put, remove, removeDataCollectionListener |
addCollection
public void addCollection(DataCollection dc)
- Add all elements from specified collection to union.
If specified collection already contains in union then all it elements
readded again.
- Parameters:
- dc - Collection with data elements which will be added to union.
removeCollection
public void removeCollection(String name)
- Removes all elements contained in collection with specified name from union.
- Parameters:
- name - Simple name of data collection which contains elements to remove
from union.
BOTTOM