
com.intellij.openapi.externalSystem.service.project.wizard.AbstractImportFromExternalSystemWizardStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of external-system-impl Show documentation
Show all versions of external-system-impl Show documentation
A packaging of the IntelliJ Community Edition external-system-impl library.
This is release number 1 of trunk branch 142.
The newest version!
package com.intellij.openapi.externalSystem.service.project.wizard;
import com.intellij.ide.util.projectWizard.WizardContext;
import com.intellij.projectImport.ProjectImportWizardStep;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Just a holder for the common useful functionality.
*
* @author Denis Zhdanov
* @since 8/2/11 3:22 PM
*/
public abstract class AbstractImportFromExternalSystemWizardStep extends ProjectImportWizardStep {
protected AbstractImportFromExternalSystemWizardStep(@NotNull WizardContext context) {
super(context);
}
@Override
@Nullable
protected AbstractExternalProjectImportBuilder getBuilder() {
return (AbstractExternalProjectImportBuilder)getWizardContext().getProjectBuilder();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy