I have a SWING form and when I close the application I want to save data to a text file.
This is the code generated by Swing which I cannot modify:
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
addWindowListener(new java.awt.event.WindowAdapter()
{
public void windowClosed(java.awt.event.WindowEvent evt)
{
formWindowClosed(evt);
}
});
Here is my custom implementation of formWindowClosed. The problem is that the app closes without executing formWindowClosed.
Isn't formWindowClosed the method where I want to put the code that gets executed before the app closes ?
formWindoClosed implementation:
private void formWindowClosed(java.awt.event.WindowEvent evt)
{
System.out.println("Message");
brain.getBirou().getProbaRepo().WriteParticipantToTXT();
}

