| 17 | // |
| 18 | |
| 19 | void PropertyAssign::setCollection(ConstCollectionPtr collection) |
| 20 | { |
| 21 | if (collection) |
| 22 | { |
| 23 | setCollectionString(collection->getName()); |
| 24 | } |
| 25 | else |
| 26 | { |
| 27 | removeAttribute(COLLECTION_ATTRIBUTE); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | CollectionPtr PropertyAssign::getCollection() const |
| 32 | { |
nothing calls this directly
no test coverage detected