static Set allConceptNames() { ret allConceptNames(mainConcepts); } static Set allConceptNames(Concepts concepts) { new TreeSet names; for (Concept concept : allConcepts(concepts)) names.add(shortDynamicClassName(concept)); ret names; }