SCM URLs Import Pages

Identifier:
org.eclipse.team.ui.scmUrlImportPages

Since:
3.6

Description:
EXPERIMENTAL. This extension point has been added as part of a work in progress. There is no guarantee that this API will work or that it will remain the same in future releases. Please do not use this API without consulting with the Team team.

This extension point is used to register a page to import projects basing on their SCM URLs.

Providers may provide an extension for this extension point, and an implementation of org.eclipse.team.ui.IScmUrlImportWizardPage which allows to set and retrive project import descriptions.

Configuration Markup:

<!ELEMENT extension (scmUrlImportPage)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT scmUrlImportPage EMPTY>

<!ATTLIST scmUrlImportPage

page     CDATA #REQUIRED

importer IDREF #REQUIRED>


Examples:
The following is an example of a import page CVS:


<extension point="org.eclipse.team.ui.scmUrlImportPages">
 <scmUrlImportPage
  importer="org.eclipse.team.core.cvs.importer"
  page="org.eclipse.team.internal.ccvs.ui.wizards.CVSScmUrlImportWizardPage">
 </scmUrlImportPage>
</extension>

API Information:
Value of a page's page attribute must be a fully qualified name of a Java class that implements the interface org.eclipse.team.ui.IScmUrlImportWizardPage.

Supplied Implementation:
CVS UI provides a page extension capable of configuring import from CVS.


Copyright (c) 2011, 2012 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 http://www.eclipse.org/legal/epl-v10.html