(List list)
| 98 | } |
| 99 | |
| 100 | private static List deepCopyList(List list) { |
| 101 | List copy = new ArrayList(list.size()); |
| 102 | for (Object o : list) { |
| 103 | copy.add(deepCopyObject(o)); |
| 104 | } |
| 105 | return copy; |
| 106 | } |
| 107 | |
| 108 | public F getSetField() { |
| 109 | return setField_; |
no test coverage detected