Package org.eclipse.team.ui
Interface IConfigurationWizardExtension
-
public interface IConfigurationWizardExtensionExtendsIConfigurationWizardto support the sharing of multiple projects. The Share Project wizard uses the "adaptable" mechanism (seeIAdapterManagerto obtain anIConfigurationWizardExtensionfor anIConfigurationWizardclass so clients may choose to have theirIConfigurationWizardclass implement this interface as well or may choose to use the adaptable mechanism to provide the extension.Clients may implement this interface.
- Since:
- 3.4
- See Also:
IConfigurationWizard
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit(IWorkbench workbench, IProject[] projects)Initializes this creation wizard using the passed workbench and selected projects.
-
-
-
Method Detail
-
init
void init(IWorkbench workbench, IProject[] projects)
Initializes this creation wizard using the passed workbench and selected projects.This method is called after the no argument constructor and before other methods are called.
- Parameters:
workbench- the current workbenchprojects- the selected projects
-
-