使用JRadioButton来确定要使用的Object

时间:2015-06-11 22:37:57

标签: java object jradiobutton

我需要使用两个JRadioButtons(已经设置了ButtonGroup)来确定将使用哪两个对象。

savingsButton.addActionListener(new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e) {
            AbstractButton aButton = (AbstractButton) e.getSource();
            if (aButton == savingsButton) {
                //set the target Object to savingsAccount
            }
        } 
    });

另一个ActionListener是相同的,除了为savingsAccount交换checkingAccount。

我该如何做到这一点?

0 个答案:

没有答案