我需要使用两个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。
我该如何做到这一点?