Family Element Wizard

Identifier:
com.ps.consul.eclipse.ui.FamilyElementWizard

Since:
1.0

Description:
Element wizards are used in the feature and family editors to create new elements.
For new wizards implement the com.ps.consul.eclipse.ui.wizards.ICustomWizardPage interface.

Configuration Markup:

<!ELEMENT extension (wizard)+>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>

Extension point for additional family element wizard.



<!ELEMENT wizard EMPTY>

<!ATTLIST wizard

class       CDATA #REQUIRED

parentclass CDATA #REQUIRED

parenttype  CDATA #IMPLIED

priority    CDATA #IMPLIED

icon        CDATA #IMPLIED

name        CDATA #REQUIRED>

An additional family element wizard.



Examples:
<wizard class="the implementing java class"
        parentclass="the class of the parent element"
        parenttype="the type of the parent element"
        priority="the priority for sorting"
        icon="the icon for the menu item"
        name="the name for the menu item">
</wizard>