This extension point is used to register target creation wizard extensions. Target creation wizards appear as choices within the "New Target" dialog, and are used to create target definitions. Target creation wizards can be organized in categories. Uncategorized wizards or wizards with invalid category paths will be sorted in as non-categorized root element.
<p>
Target creation wizards may optionally specify a description subelement whose body should contain short text about the wizard.
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
an optional name of the extension instance
a unique name that can be used to identify this category
a translatable name of the category that will be used in the dialog box
a path to another category if this category should be added as a child
a unique id that can be used to identify this wizard
a translatable name of the wizard that will be used in the UI
a relative path of an icon that will be used together with the name to represent the wizard as one of the choices in the creation dialog box.
a slash-delimited path ('/') of category IDs. Each token in the path must represent a valid category ID previously defined by this or some other plug-in. If omitted, the wizard will be added to the "Other" category.
a fully qualified name of the Java class implementing <samp>org.eclipse.ui.IWorkbenchWizard</samp>.
whether the wizard is capable of finishing without ever showing pages to the user.
whether the wizard provides any pages.
an optional subelement whose body contains a short text describing what the wizard will do when started
Target Explorer 1.0.0
The following is an example of this extension point's usage:
<p>
<pre>
<extension point="org.eclipse.tcf.te.ui.newWizards">
<category id="org.eclipse.tcf.te.ui.newWizards.category"
name="General"/>
<wizard
categoryId="org.eclipse.tcf.te.ui.newWizards.category"
class="org.eclipse.tcf.te.tcf.ui.internal.wizards.NewTargetWizard"
id="org.eclipse.tcf.te.tcf.ui.wizards.NewTargetWizard"
name="TCF Target">
</wizard>
</extension>
</pre>
</p>
The provider of a new target creation wizard must implement <samp>org.eclipse.ui.IWorkbenchWizard</samp>.
Copyright (c) 2011 Wind River Systems, Inc. and others.
All rights reserved.
This program and the accompanying materials are made available under the terms
of the Eclipse Public License v1.0 which accompanies this distribution, and is
available at http://www.eclipse.org/legal/epl-v10.html.