Wizard page (extension point)
From BioUML platform
- Identifier
- ru.biosoft.workbench.wizardPage
- Plugin
- ru.biosoft.workbench
- Since
- 0.8.5
- Applicable for
- BioUML workbench
- Note
- Moved from biouml.workbench.wizardPage to ru.biosoft.workbench.wizardPage in 0.9.6
Description
Define new step for BioUML setup wizard. Using this extension point plug-in can be configured from standard setup wizard.
Configuration Markup
<!ELEMENT wizardPage>
<!ATTLIST wizardPage
name CDATA #REQUIRED
description CDATA #REQUIRED
position CDATA #REQUIRED
page CDATA #REQUIRED
>
- name
- the name of wizard sted.
- description
- short description of wizard step
- position
- step number (beginning from 0).
- page
- the fully-qualified name of wizard page class
Examples
This is example of adding databases configuration page to setup wizard.
<extension id="Databases wizard page" point="biouml.workbench.wizardPage">
<wizardPage
name="Connect databases"
description="Connect databases from server"
position="2"
page="biouml.workbench.module.DatabasesWizardPage"
/>
</extension>
API Information
The value of the page attribute must represent an implementor of WizardPage.
