static JRadioButton jradiobutton(fS text, final ButtonGroup group) { ret swing(func -> JRadioButton { JRadioButton rb = new JRadioButton(text); if (group != null) group.add(rb); ret rb; }); }