There are several helper classes that can be used to easily create CARMA connections:
com.ibm.carma.ui.wizard.CarmaConnectionWizard is specifically targeted at creating a CARMA connection when the Finish button is clicked. The wizard page for the dialog provides a connection name and startup parameters and the provided logic creates the connection and adds it to the CARMA views.com.ibm.carma.ui.wizard.CarmaConnectionWizardPage works with the CarmaConnectionWizard to gather the input to create a CARMA connection. The wizard page provides accessor methods to needed information, but leaves the display and input gathering to the implementer.<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT wizard EMPTY>
<!ATTLIST wizard
id CDATA #REQUIRED
class CDATA #REQUIRED
name CDATA #REQUIRED
icon CDATA #IMPLIED>
Declares a Connection wizard for CARMA
<extension point=
"com.ibm.carma.ui.newCarmaWizards"
>
<wizard id=
"com.ibm.carma.ui.rse.rseCarmaConnectionWizard"
class=
"com.ibm.carma.ui.rse.wizard.RseNewCarmaConnectionWizard"
name=
"New CARMA Connection from RSE Connection"
icon=
"icons/full/obj/carma.gif"
/>
</extension>
org.eclipse.jface.wizard.IWizard.