uDig

«  Jface Field Decorations   ::   Contents   ::   Plugin Help  »

JFace Wizards

Contributing to the ImportWizard

Add a ImportWizard extension in the plugin.xml of your plugin.

<extension
         point="org.eclipse.ui.importWizards">
      <wizard
            class="org.locationtech.udig.catalog.internal.ui.CatalogImportWizard"
            icon="icons/obj16/repository_obj.gif"
            id="org.locationtech.udig.catalog.ui.dataImportWizard"
            name="%dataImportWizard.name">
         <description>Import from a data source.</description>
      </wizard>
   </extension>

Contributing to the dataWizard

Add a dataWizard extension in the plugin.xml of your plugin.

<extension
       point="org.locationtech.udig.catalog.ui.dataWizards">
    <wizard
          banner="icons/wizban/postgis_wiz.gif"
          class="org.locationtech.udig.catalog.internal.postgis.ui.MifWizardPage"
          description="%wizard.description"
          icon="icons/etool16/postgis_wiz.gif"
          id="org.locationtech.udig.catalog.ui.mif"
          name="%wizard.name">
    </wizard>
 </extension>

«  Jface Field Decorations   ::   Contents   ::   Plugin Help  »