Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a45d161085881524a739423ff076fe22dda43481 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>

<!-- Terminal connector type contributions -->
   <extension point="org.eclipse.tcf.te.ui.terminals.connectorTypes">
      <connectorType
            class="org.eclipse.tcf.te.ui.terminals.telnet.types.TelnetConnectorType"
            id="org.eclipse.tcf.te.ui.terminals.type.telnet"
            label="%TelnetConnectorType.label">
      </connectorType>
   </extension>
   
<!-- Terminals launcher delegate contributions -->
   <extension point="org.eclipse.tcf.te.ui.terminals.launcherDelegates">
      <delegate
            class="org.eclipse.tcf.te.ui.terminals.telnet.launcher.TelnetLauncherDelegate"
            id="org.eclipse.tcf.te.ui.terminals.telnet.launcher.telnet"
            label="%TelnetLauncherDelegate.label">
            <enablement>
               <with variable="selection">
                  <count value="1"/>
                  <iterate operator="and" ifEmpty="false">
                     <test
                           property="org.eclipse.tcf.te.runtime.services.hasService"
                           value="org.eclipse.tcf.te.runtime.services.interfaces.IPropertiesAccessService"/>
                  </iterate>
               </with>
            </enablement>
      </delegate>
   </extension>
</plugin>

Back to the top