Configuration Wizards

org.eclipse.team.ui.configurationWizards

This extension point is used to register a method for configuration of a project. Configuration involves the association of a project with a team provider, including all information necessary to initialize that team 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 projects.

<!ELEMENT extension (wizard?)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!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.configurationWizards"

>

<wizard name=

"WebDAV"

icon=

"webdav.gif"

class=

"com.xyz.DAVDecorator"

id=

"com.xyz.dav"

>

</wizard>

</extension>

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.

The plug-in org.eclipse.team.provider.examples.ui contains sample implementations of IConfigurationWizard for the WebDAV and filesystem provider types.