You should use ButtonGroup to group your radio buttons.
In below example if jrb1 and jrb2 and jrb3 are JRadioButton instances so group make them as a group so you can just select one of them.
ButtonGroup group = new ButtonGroup();
group.add(jrb1);
group.add(jrb2);
group.add(jrb3);