Wizard Fragments

org.eclipse.wst.server.ui.wizardFragments

1.0

This extension point provides a way to add pages or logic into wizards for a specific runtime, server, or server configuration type.

<!ELEMENT extension (fragment*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT fragment EMPTY>

<!ATTLIST fragment

id      CDATA #REQUIRED

class   CDATA #REQUIRED

typeIds CDATA #REQUIRED>


The following is an example of a wizard fragment extension point:
   

<extension point=

"org.eclipse.wst.server.ui.wizardFragments"

>

<fragment id=

"com.example"

typeIds=

"com.example.runtime"

class=

"com.example.ExampleWizardFragment"

/>

</extension>

Value of the attribute class must be a fully qualified name of a Java class that implements the interface org.eclipse.wst.server.ui.wizard.WizardFragment.