/**
* Creates the wizard dialog.
*/
private void initialize() {
this.dialog = new WizardDialog();
this.dialog.setTitle(LangageManager.getProperty("listgen.dialogtitle"));
this.dialog.setTask(this.reportTask = new ReportTask(this));
this.dialog.setSize(500, 300);
centerDialog(dialog);
this.dialog.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);