| 81 | // |
| 82 | |
| 83 | void Collection::setIncludeCollection(ConstCollectionPtr collection) |
| 84 | { |
| 85 | if (collection) |
| 86 | { |
| 87 | setIncludeCollectionString(collection->getName()); |
| 88 | } |
| 89 | else |
| 90 | { |
| 91 | removeAttribute(INCLUDE_COLLECTION_ATTRIBUTE); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | void Collection::setIncludeCollections(const vector<ConstCollectionPtr>& collections) |
| 96 | { |
no test coverage detected