Description: This extension point is used to register a method for configuration of a project. Configuration involves the association of a project with a repository provider, including all information necessary to initialize that repository provider, including such things as username, password, and any relevant information necessary to locate the provider.
Providers may provide an extension for this extension point, and an
implementation of org.eclipse.team.ui.IConfigurationWizard
which
gathers the necessary information and configures the project.
Configuration Markup:
<!ELEMENT wizard EMPTY>
<!ATTLIST wizard
name
CDATA #REQUIRED
icon
CDATA #REQUIRED
class
CDATA #REQUIRED
id
CDATA #REQUIRED
>
Following is an example of a configuration wizard extension:
<extension point="org.eclipse.team.ui.configurationWizard">
<wizard
name="CVS"
icon="icons/full/wizards/newconnect_wiz.gif"
class="org.eclipse.team.internal.ccvs.ui.wizards.SharingWizard"
id="org.eclipse.team.ccvs.ui.SharingWizard">
</wizard>
</extension>
API Information: The value of the class attribute must represent a class that implements org.eclipse.team.ui.IConfigurationWizard. This interface supports configuration of a wizard given a workbench and a project.
Supplied Implementation: The plug-in org.eclipse.team.examples.filesystem contains a sample implementation of IConfigurationWizard for a filesystem based repository provider.