New Terminal Wizards
Identifier:
eu.geclipse.terminal.newTerminalWizards
Description:
This extension point is used to plug in new terminal wizards which allow to create terminal sessions using different communication layers or data sources.
Configuration Markup:
<!ELEMENT extension (wizard+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- id - A unique id that will be used to reference this terminal wizard extension.
- name - Name of the terminal wizard extension.
<!ELEMENT wizard EMPTY>
<!ATTLIST wizard
name CDATA #REQUIRED
class CDATA #REQUIRED
icon CDATA #IMPLIED
id CDATA #REQUIRED>
- name - Name of the Wizard.
- class - Class implementing the eu.geclipse.ui.wizards.INewWizard interface with UserDataType eu.geclipse.terminal.ITerminalView.
- icon - Icon for this wizard, displayed in the first page of the "new terminal wizard" where the wizard can be selected. (optional)
- id -
Examples:
See eu.geclipse.terminal.ssh for an example.