* {@inheritDoc}
*/
public QuickSetupStepPanel createWizardStepPanel(WizardStep step) {
QuickSetupStepPanel p = null;
if (step == Step.CONFIRM_UNINSTALL) {
p = new ConfirmUninstallPanel(this, installStatus);
} else if (step == Step.PROGRESS) {
p = new ProgressPanel(this);
} else if (step == Step.FINISHED) {
p = new FinishedPanel(this);
}