Difference between revisions of "Wizard page (extension point)"
From BioUML platform
Tagir Valeev (Talk | contribs) (From Help&Manual) |
Revision as of 16:58, 13 May 2013
- Identifier
- biouml.workbench.wizardPage
- Plugin
- biouml.workbench
- Since
- 0.8.5
- Applicable for
- BioUML workbench
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.
