* @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)
*/
public void actionPerformed(ActionEvent e) {
String action = e.getActionCommand();
Functor f = (Functor) functors.get(action);
f.invoke(saveConfig, new Object[] {
Boolean.valueOf(((JCheckBox) e.getSource()).isSelected()) });
}
/**
* @return Returns the saveConfig.