static A conceptFromComboBox(JComboBox cb, Class cc) { ret conceptFromComboBox(cb, mainConcepts, cc); } static A conceptFromComboBox(JComboBox cb, Concepts concepts, Class cc) { S s = getTextFromComboBox(cb); if (empty(s)) null; long id = parseFirstLong(s); ret getConcept(concepts, cc, id); }