You should declare a ButtonGroup and then in initialize() method or your JRadioButton decalation method
you should add your JradioButton to the declared ButtonGroup.
So , you will have something like this :
ButtonGroup btngrp = new ButtonGroup();
....
btnRepayment .add(jrb1);