2015-02-02 20:22:26 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?eclipse version="3.2"?>
|
|
|
|
<!--
|
|
|
|
# Copyright (c) 2015 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
|
|
|
|
-->
|
|
|
|
<plugin>
|
|
|
|
<extension-point id="parsers" name="Terminal Parsers" schema="schema/parsers.exsd"/>
|
2015-04-27 07:20:48 +02:00
|
|
|
|
|
|
|
<!-- Terminal connector contributions -->
|
|
|
|
<extension point="org.eclipse.tm.terminal.control.connectors">
|
|
|
|
<connector
|
|
|
|
name="%connectionName"
|
|
|
|
id="org.eclipse.tm.terminal.connector.remote.RemoteConnector"
|
|
|
|
class="org.eclipse.tm.terminal.connector.remote.internal.RemoteConnector"/>
|
2015-02-02 20:22:26 -05:00
|
|
|
</extension>
|
2015-04-27 08:50:06 +02:00
|
|
|
|
|
|
|
<!-- Terminal launcher delegate contributions -->
|
|
|
|
<extension point="org.eclipse.tm.terminal.view.ui.launcherDelegates">
|
|
|
|
<delegate
|
|
|
|
class="org.eclipse.tm.terminal.connector.remote.launcher.RemoteLauncherDelegate"
|
|
|
|
id="org.eclipse.tm.terminal.connector.telnet.launcher.remote"
|
|
|
|
label="Remote Terminal">
|
|
|
|
</delegate>
|
|
|
|
</extension>
|
2015-04-27 07:20:48 +02:00
|
|
|
|
|
|
|
<!-- Preference contributions -->
|
|
|
|
<extension point="org.eclipse.core.runtime.preferences">
|
2015-02-02 20:22:26 -05:00
|
|
|
<initializer
|
2015-04-27 07:20:48 +02:00
|
|
|
class="org.eclipse.tm.terminal.connector.remote.internal.preferences.RemoteTerminalPreferenceInitializer">
|
2015-02-02 20:22:26 -05:00
|
|
|
</initializer>
|
|
|
|
</extension>
|
2015-04-27 07:20:48 +02:00
|
|
|
|
|
|
|
<extension point="org.eclipse.ui.preferencePages">
|
2015-02-02 20:22:26 -05:00
|
|
|
<page
|
|
|
|
category="org.eclipse.tm.terminal.TerminalPreferencePage"
|
2015-04-27 07:20:48 +02:00
|
|
|
class="org.eclipse.tm.terminal.connector.remote.internal.preferences.RemoteTerminalPreferencePage"
|
2015-02-02 20:22:26 -05:00
|
|
|
id="org.eclipse.tm.terminal.remote.page"
|
|
|
|
name="%RemoteTerminalPage.name">
|
|
|
|
</page>
|
|
|
|
</extension>
|
|
|
|
</plugin>
|