use of com.intellij.ide.wizard.StepWithSubSteps in project intellij-community by JetBrains.
the class AbstractProjectWizard method doPreviousAction.
@Override
protected void doPreviousAction() {
if (myDelegate != null) {
myDelegate.doPreviousAction();
return;
}
final ModuleWizardStep step = getCurrentStepObject();
step.onStepLeaving();
if (step instanceof StepWithSubSteps) {
((StepWithSubSteps) step).doPreviousAction();
}
super.doPreviousAction();
}
Aggregations