I would recommend using a JToggleButton or JCheckBox for this case. It would be more natural to the user and either component can store it's state without declaring any further booleans.
E.G.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class ToggleButton {
public static void main(String[] args) {
final JLabel result = new JLabel("Hit the button!");
final JToggleButton switchButton = new JToggleButton("Switch");
switchButton.addActionListener( new ActionListener() {
public void actionPerformed(ActionEvent ae) {
result.setText("" + switchButton.isSelected());
}
} );
JPanel p = new JPanel(new GridLayout(0,1));
p.add(switchButton);
p.add(result);
JOptionPane.showMessageDialog(null, p);
}
}