Returns a copy of the list of objects stored in this CDOMObject for the given ListKey. No order is guaranteed, and the returned List may contain duplicates. There is no guarantee that duplicate items are sequential items in the returned List. This method is value-semantic in that no changes are ma
(ListKey<T> key)
| 543 | * key; null if the given key is not a ListKey in this CDOMObject. |
| 544 | */ |
| 545 | public final <T> List<T> getListFor(ListKey<T> key) |
| 546 | { |
| 547 | return listChar == null ? null : listChar.getListFor(key); |
| 548 | } |
| 549 | |
| 550 | /** |
| 551 | * Returns a non-null copy of the list of objects stored in this CDOMObject |
no test coverage detected