use of nl.tudelft.watchdog.intellij.ui.wizards.userregistration.UserRegistrationStep in project watchdog by TestRoots.
the class ProjectCreatedEndingStep method createPageContent.
private void createPageContent(JPanel parent) {
if (isThisProjectWizard()) {
createProjectRegistrationSummary(parent);
} else {
UserProjectRegistrationWizard wizard = (UserProjectRegistrationWizard) getWizard();
UserRegistrationStep userRegistrationStep = wizard.userRegistrationStep;
if (wizard.userWelcomeStep.getRegisterNewId()) {
createDebugSurveyInfo(parent);
userRegistrationStep.createUserRegistrationSummary(parent);
}
createProjectRegistrationSummary(parent);
}
}
Aggregations