Returns a non-null 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 chang
(ListKey<T> key)
| 565 | * key. |
| 566 | */ |
| 567 | public final <T> List<T> getSafeListFor(ListKey<T> key) |
| 568 | { |
| 569 | return listChar != null && listChar.containsListFor(key) ? listChar.getListFor(key) : new ArrayList<>(); |
| 570 | } |
| 571 | |
| 572 | /** |
| 573 | * Returns a non-null Set of the objects stored in this CDOMObject for the |
no test coverage detected