{
FileOutputStream os = new FileOutputStream(new File(runningInfoFile));
runningInfo.store(os, ""); //$NON-NLS-1$
os.close();
SeamBasedGenerator generator = new SeamBasedGenerator(sourceDirLabel.getText() + File.separator + "bin", targetDirLabel.getText(), jProgressBar, messagesArea); //$NON-NLS-1$
new Thread(generator).start();
}
catch (NullPointerException e)
{