Wizard Fragments

Identifier:
org.eclipse.wst.server.ui.wizardFragments

Since:
1.0

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

Configuration Markup:

<!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>


Examples:
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>


Copyright (c) 2000, 2005 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/