Bundle Import Pages

This extension point is internal

Identifier:
org.eclipse.pde.ui.bundleImportPages

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 PDE team.

A bundle import page provides an optional wizard page used to configure settings for bundles to be imported by a org.eclipse.pde.core.bundleImporters extension.

Configuration Markup:

<!ELEMENT extension (page+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>


<!ELEMENT page EMPTY>

<!ATTLIST page

id             CDATA #REQUIRED

class          CDATA #REQUIRED

bundleImporter IDREF #REQUIRED

>


Examples:
The following is an example of a bundle import wizard page extension.


 <extension point="org.eclipse.pde.core.bundleImporters">
  <importer
   id="com.example.ExampleIdentifier"
   class="com.example.ExampleBundleImportWizardpage"
   bundleImporter="com.example.bundleImporter">
  </importer>
 </extension>

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

Supplied Implementation:
PDE provides a wizard page for editing properties of bundles that can be imported by the CVS bundle importer. The page allows users to import specific bundle versions or from HEAD.


Copyright (c) 2010 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.