sclass ListInConcept extends CollectionInConcept implements L { L list; *() {} // for persistence *(List list, Concept cc) { super(list, cc); this.list = list; } public List subList(int fromIndex, int toIndex) { synchronized (this) { ret new ListInConcept<>(list.subList(fromIndex, toIndex), cc); } } !include #1011344 }