The situation: The states of a set of components are saved to an XML file. Everything saves fine. I am trying to load the same data to the same components (although the rest of the application may be in a different state, e.g. new instance of the application).
The problem: One of the components is a JRadioButton, and I would like to enable this button without causing its actionlistener to fire (the listener invokes objects that may not be created at this point in time).
The question: Is it possible to enable a JRadioButton without firing its listener?