!7 srecord Entry(S text, S annotation) {} cmodule QuickAnnotator > DynObjectTable { start { addCountToName(); } // API void fillData(Collection l) { setList(map(l, p -> nu Entry(text := p.a, annotation := p.b))); } void fillData(SS map) { fillData(mapToPairs(map)); } void setItems(Collection l) { fillData(map(l, s -> pair(s, ""))); } }