Difference between revisions of "Wizard page (extension point)"
From BioUML platform
Tagir Valeev (Talk | contribs) (From Help&Manual) |
Tagir Valeev (Talk | contribs) (->ru.biosoft.workbench) |
||
| Line 1: | Line 1: | ||
| − | {{Extension point|wizardPage| | + | {{Extension point|wizardPage|ru.biosoft.workbench|since=0.8.5}} |
;Applicable for | ;Applicable for | ||
:[[BioUML workbench]] | :[[BioUML workbench]] | ||
| + | ;Note | ||
| + | :Moved from biouml.workbench.wizardPage to ru.biosoft.workbench.wizardPage in 0.9.6 | ||
=== Description === | === Description === | ||
Define new step for BioUML setup wizard. Using this extension point plug-in can be configured from standard setup wizard. | Define new step for BioUML setup wizard. Using this extension point plug-in can be configured from standard setup wizard. | ||
Latest revision as of 15:21, 21 November 2013
- 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
[edit] Description
Define new step for BioUML setup wizard. Using this extension point plug-in can be configured from standard setup wizard.
[edit] 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
[edit] 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>
[edit] API Information
The value of the page attribute must represent an implementor of WizardPage.
