* @return The <code>File</code> which the report should be saved into, or <code>null</code> if the user
* does not want to continue with the save operation
*/
public static File promptReportFilename(final Component parent, final File defaultFile)
{
final FileFilter filter = new FilesystemFilter
(new String[]{DEFAULT_EXTENSION},
Messages.getString("StyleDefinitionUtilities.FileDescription"), true);
final CommonFileChooser fileChooser = FileChooserService.getInstance().getFileChooser(FILE_CHOOSER_TYPE);
fileChooser.setSelectedFile(defaultFile);