All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schema.configurationWizards.exsd Maven / Gradle / Ivy

There is a newer version: 3.10.500
Show newest version




      
         
      
      
         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.
<p>
Providers may provide an extension for this extension point, and an implementation of <samp>org.eclipse.team.ui.IConfigurationWizard</samp>
which gathers the necessary information and configures the projects.
      
   

   
      
         
            
         
         
            
               
                  
               
            
         
         
            
               
                  
               
            
         
         
            
               
                  
               
            
         
      
   

   
      
         
            
         
      
      
         
            
               
                  The name of the configuration type as it should appear in the configuration wizard.  Examples are "CVS", "WebDAV".
               
               
                  
               
            
         
         
            
               
                  the icon to present in the configuration wizard next to the name.
               
               
                  
               
            
         
         
            
               
                  a fully qualified name of the Java class implementing <samp>org.eclipse.team.ui.IConfigurationWizard</samp>.
               
               
                  
               
            
         
         
            
               
                  a unique identifier for this extension.
               
            
         
      
   

   
      
         
      
      
         Following is an example of a configuration wizard extension:

<p>
<pre>
 <extension point="org.eclipse.team.ui.configurationWizards">
  <wizard 
   name="WebDAV"
   icon="webdav.gif"
   class="com.xyz.DAVDecorator"
   id="com.xyz.dav">
  </wizard>
 </extension>
</pre>
</p>
      
   

   
      
         
      
      
         The value of the <samp>class</samp> attribute must represent a class that implements <samp>org.eclipse.team.ui.IConfigurationWizard</samp>.
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.
      
   

   
      
         
      
      
         Copyright (c) 2002 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 <a href="https://www.eclipse.org/legal/epl-2.0">https://www.eclipse.org/legal/epl-v20.html</a>/

SPDX-License-Identifier: EPL-2.0
      
   






© 2015 - 2024 Weber Informatics LLC | Privacy Policy