return clsesPanel;
}
protected AllowableAction getCreateClsAction() {
return new AllowableAction("Create ICD category", categoryIcon, clsesPanel.getSelectable()) {
public void actionPerformed(ActionEvent e) {
final Collection parents = clsesPanel.getSubclassPane().getSelection();
if (!parents.isEmpty()) {
Transaction<Cls> t = new Transaction<Cls>(getKnowledgeBase(), "Create ICD Category (random name)") {
private Cls cls;