Use custom ActionListener:
CustomActionListener listener = new CustomActionListener();
for (int i=0; i<btns.length; i++){
buttons[i].addActionListener(listener);
}
class CustomActionListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
JButton button = (JButton) e.getSource();
}
}
source
share