What can I do to get which radiobutton is selected on a buttongroup without doing this:

    if (jRadioButton1.isSelected()) {

        ...



    }

    if (jRadioButton2.isSelected()) {

        ...



    }

    if (jRadioButton3.isSelected()) {


        ...
    }

    if (jRadioButton4.isSelected()) {

        ...

    }
link|improve this question

69% accept rate
feedback

3 Answers

You can get the ButtonModel for the selected button via the getSelection() method of ButtonGroup. I don't know how you can avoid conditionally branching on the selected button though, unless you have some sort of ancillary data structure mapping from ButtonModel to actions to perform, for instance. If you had that, then you could just fire the action based on the returned ButtonModel.

link|improve this answer
how do I convert the button model which is being returned. Into something like jRadioButton1 or jRadioButton2? – user225269 Mar 10 '11 at 3:16
You can't convert it; that model is used to power the JRadioButton. It's a model view controller separation. What are you trying to accomplish, and I can tell you how to do it. – I82Much Mar 10 '11 at 3:43
feedback

ButtonGroup class does not provide a method to identify the currently selected button (inherited from AbstractButton) in the group if that is your intention. It only has clearSelection() method to clear the selected state of all buttons in the group (with exception for JButton and JMenuItem which don't have select/deselect button state).

One solution I can think of is to use a special variable or field (AbstractButton, JRadioButton or JRadioButtonMenuItem if it is in a menu item) to identify which one is currently selected by updating it inside each AbstractButton's action listener method (make sure to validate user clicks since it can be triggered more than once!). Use the variable (by typecasting it - for AbstractButton only) in other method(s).

Other than that, nope...you will need to do conditional branching.

link|improve this answer
feedback

Darryl's Select Button Group has a getSelectedButton() method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.