Hi,

I have been trying to figure out how to switch the side the text appears on a JRadioButton but don't know how. Is it possible? I have this
Code:
rad1 = new JRadioButton("Test: ");
On the window it shows up as "() Test:"
I want it to be "Test: ()"

Is that possible to do? If not I suppose I could just make a label and use that instead and leave the text on the radio button blank.

Thanks