Synchronize Participant Creation Wizards

Identifier:
org.eclipse.team.ui.synchronizeWizards

Since:
3.0

Description:
This extension point is used to register a synchronize participant creation wizard. These wizards are used to create synchronize participants that will appear in the Synchronize View. A provider will typically create a creation wizard to allow the user to perform and manage a particular type of synchronize participant. Providers may provide an extension for this extension point, and an implementation of org.eclipse.jface.wizard.IWizard.

Configuration Markup:

<!ELEMENT extension (wizard?)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT wizard EMPTY>

<!ATTLIST wizard

name        CDATA #REQUIRED

description CDATA #REQUIRED

icon        CDATA #REQUIRED

class       CDATA #REQUIRED

id          CDATA #REQUIRED>


Examples:
Following is an example of a synchronize participant creation wizard extension:


 <extension point="org.eclipse.team.ui.synchronizeWizards">
  <wizard 
   name="WebDAV"
   description="Create a WebDAV participant to view changes between workspace resources and their remote WebDAV location"
   icon="webdav.gif"
   class="com.xyz.DAVWizard"
   id="com.xyz.dav.synchronizeWizard">
  </wizard>
 </extension>

API Information:
The value of the class attribute must represent a class that implements org.eclipse.jface.wizard.IWizard.

Supplied Implementation:
The plug-in org.eclipse.team.cvs.ui contains example definitions of synchronizeWizards extension point.


Copyright (c) 2004 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0