org.jlense.uiworks.openWizards Extension PointIdentifier: org.jlense.uiworks.newWizards Description: This extension point is used to register wizards for viewing and editing objects. Open Wizards may be modal or non-modal. A non-modal wizard optionally specify a description subelement whose body should contain short text about the wizard. Configuration Markup:
<!ELEMENT wizard (description)?>
<!ATTLIST wizard
id CDATA #REQUIRED
name CDATA #REQUIRED
icon CDATA #IMPLIED
class CDATA #REQUIRED
perspectiveID CDATA #REQUIRED
modal CDATA #OPTIONAL
>
<!ELEMENT description (#PCDATA)>
Examples: Following is an example of open wizard configuration:
<extension point="org.jlense.uiworks.openWizards">
<wizard
id="org.jledger.ui.accounts.AccountWizard"
name="Account"
class="org.jledger.ui.accounts.AccountWizard"
icon="images/Accounts.gif"
perspectiveID="org.jlense.uiworks.FormPerspective">
<description>%new.account.wizard.description</description>
</wizard>
<wizard
id="org.jledger.ui.gj.TransactionWizard"
name="General Journal Transaction"
class="org.jledger.ui.gj.TransactionWizard"
icon="images/GeneralJournal.gif"
perspectiveID="org.jlense.uiworks.FormPerspective">
<description>%new.transaction.wizard.description</description>
</wizard>
<wizard
id="org.jledger.ui.gj.EntryWizard"
name="Entry"
class="org.jledger.ui.gj.EntryWizard"
icon="images/GeneralJournal.gif"
perspectiveID="org.jlense.uiworks.FormPerspective"
modal="true"
>
<description>%new.entry.wizard.description</description>
</wizard>
</extension>
API Information: The value of the class attribute must represent a class that implements org.jlense.uiworks.workbench.IWorkbenchWizard. |