This is because you are probably trying to access this button from an anonymous class that you use this way:
button.addActionListener(
new MyListener implements ActionListener {
public void actionPerformed(ActionEvent e) {
}
}
);
, Java , , , . , final, , , .
, ActionEvent actionPerformed:
((JButton)e.getSource()).setEnabled(false)
ActionListener - static final.. , .