Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

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

>

  • name - The name of the synchronize participant creation type. Examples are "CVS", "CVS Merge", "WebDAV".
  • description - The description for the creation wizard.
  • icon - The icon to be shown when this wizard type is shown to the user.
  • class - A fully qualified name of the Java class implementing org.eclipse.jface.wizard.IWizard.
  • id - A unique identifier for this extension.

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>

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


Copyright (c) 2004 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire