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