sclass G22VariablesPanel { transient settable G22Utils g22utils; *(G22Utils *g22utils) {} transient SimpleCRUD_v2 crud; cachedVisualize { crud = new SimpleCRUD_v2<>(g22utils.concepts(), G22Variable); crud.entityName = -> "Variable"; ret jCenteredSection("Project Variables", crud.visualize()); } void updateCount { crud.update(); } void setSelected(G22Variable var) { crud.setSelected(var); } }