public void actionPerformed(ActionEvent e) {
JFileChooser fileChooser = SharedJFileChooser.getInstance(SharedJFileChooserType.XML_FILE,
JFileChooser.FILES_ONLY);
if (fileChooser.showSaveDialog(parent) == JFileChooser.APPROVE_OPTION) {
File selectedFile = FileExtensionUtility.ensureExtension(fileChooser.getSelectedFile(),FileExtensionUtility.XML_EXTENSION);
int savePwd = JOptionPane.showConfirmDialog(parent, GettextResource.gettext(Configuration.getInstance()
.getI18nResourceBundle(),
"Save passwords informations (they will be readable opening the output file)?"), GettextResource
.gettext(Configuration.getInstance().getI18nResourceBundle(), "Confirm password saving"),