* Shows question dialog "File exists. Overwrite?"
* @param file file
* @return
*/
private boolean confirmOverwrite(File file) {
final ResourceProvider res = ResourceProvider.getInstance();
final String tmpMessage = res.get(
"filechooser.overwrite.question",
new String[] {file.getAbsolutePath()});
return JOptionPane.YES_OPTION == JOptionPane.showOptionDialog(this,
tmpMessage,
res.get("filechooser.save.warning"),
JOptionPane.YES_NO_OPTION,
JOptionPane.WARNING_MESSAGE,
null,
null,
null);