This extension point is used to register new connection creation wizard extensions. New connection creation wizards appear as choices within the "New Connection" dialog, and are used to create connections from the registered system types. New connection 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>
Each system type must have exactly one new connection wizard associated. In case multiple new connection wizard contributions would match the same system type, the new connection wizard which matched the system type first, will be used.
<p>
One new connection wizard may be registered for multiple system types. Such wizards should implement the <code>org.eclipse.jface.viewers.ISelectionChangedListener</code> interface. to get notified about the currently selected system type within the new connection system type selection page.
<p>
<b>Note:</b> The main RSE new connection wizard is using the <code>selectionChanged(SelectionChangedEvent)</code> to notify the nested wizards about
<ul>
<li> system type selection changes in the RSE new connection wizard selection page and</li>
<li> the selected context of a view or toolbar or menu the caller of the main RSE new connection wizard is passing in.</li>
</ul><br>
If the caller of the main RSE new connection wizard has passed in a selected context, the structured selection given via the <code>selectionChanged</code> call has two elements. The first element is always the selected system type (instance of type <code>IRSESystemType</code>) and the second one, if present, is the selected context from the caller (instance of type <code>ISelection</code>).
<p>
New connection wizard may have the need of contributing different attribute values for the same attribute dependent on the current system type selection. These wizards should implement the <code>org.eclipse.rse.ui.wizards.newconnection.IRSEDynamicNewConnectionWizard</code>.
(no description available)
A unique identifier.
A translatable name that will be used in the UI.
A translatable short description of the wizard.
A semicolon separated list of RSE system type id's this wizard will be registered for. RSE system type id's which have already a new connection creation wizard registered are ignored. Wildcards '*' and '?' are allowed. If empty, all registered RSE system types will be queried if accepting this new connection creation wizard by id.
A fully qualified name of the Java class implementing <code>org.eclipse.jface.wizard.IWizard</code>.
A fully qualified valid category id previously defined by this or some other plug-in. If omitted or if the specified category id is invalid, the wizard will be added as non-categorized root element.
<p>
The default RSE wizard category id is "org.eclipse.rse.ui.wizards.newconnection.default.category".
Whether the wizard is capable of finishing without ever showing pages to the user.
Whether the wizard provides any pages.
A unique identifier.
A translatable name that will be used in the UI.
The fully qualified id of the parent category or empty if it is a root category.
RSE 2.0
The following is an example of this extension point's usage:
<p>
<pre>
<extension point="org.eclipse.rse.ui.newConnectionWizards">
<category id="org.eclipse.rse.ui.wizards.newconnection.default.category"
name="%Creation.category.name"/>
<newConnectionWizard
id="org.eclipse.rse.ui.wizards.newconnection.RSEDefaultNewConnectionWizard"
class="org.eclipse.rse.ui.wizards.newconnection.RSEDefaultNewConnectionWizard"
name="%DefaultRSENewConnectionWizard.name"
canFinishEarly="false"
categoryId="org.eclipse.rse.ui.wizards.newconnection.default.category"
hasPages="true">
</newConnectionWizard>
</extension>
</pre>
</p>
The provider of a new connection creation wizard for a certain system type must implement <samp>org.eclipse.jface.wizard.IWizard</samp>.
The default RSE new connection wizard as contributed from <code>org.eclipse.rse.ui</code> plug-in.
Copyright (c) 2006, 2007 IBM Corporation 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
Contributors:
IBM Corporation - initial API and implementation
Uwe Stieber (Wind River) - rework to take standard Eclipse IWizard's