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