* @param create Indicates if the dialog should be created when it does not yet exist.
* @return The dialog or null if not available.
*/
public FileRenamerDialog getFileRenamerDialog(boolean create) {
if (create)
fileRenamerDialog = fileRenamerDialog == null ? new FileRenamerDialog(getIndex()) : fileRenamerDialog;
return fileRenamerDialog;
}