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