Terminal Connection
Identifier:
eu.geclipse.terminal.connection
Description:
This extension point is used to add a terminal factory to the new terminal dropdown button in the terminal view. Terminals created by the factories will be added to terminal view in new tabs.
Configuration Markup:
<!ELEMENT extension (dropDownEntry+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
- id - A unique id that will be used to reference this terminal factory extension.
- name - Name of the terminal factory extension.
<!ELEMENT dropDownEntry EMPTY>
<!ATTLIST dropDownEntry
class CDATA #REQUIRED
label CDATA #REQUIRED
icon CDATA #IMPLIED>
- class - Class implementing the eu.geclipse.ui.widgets.IDropDownEntry interface with UserDataType eu.geclipse.terminal.ITerminalView.
- label - Name displayed in dropdown menu for this factory.
- icon - Icon for the entry in the drop down menu. (optional)
Examples:
See eu.geclipse.terminal.ssh for an example.