Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4493100a927471883bae4ec0e7b4c706305231b9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.tm.te.ui.terminals.launcherDelegates">
      <delegate
            class="org.eclipse.tm.te.tcf.terminals.ui.launcher.LauncherDelegate"
            id="org.eclipse.tm.te.ui.terminals.launcher.tcf"
            label="%launcherDelegate.label">
            <enablement>
               <with variable="selection">
                  <count value="1"/>
                  <iterate operator="and" ifEmpty="false">
                     <instanceof value="org.eclipse.tm.te.tcf.locator.interfaces.nodes.IPeerModel"/>
                  </iterate>
               </with>
            </enablement>
      </delegate>
   </extension>

</plugin>

Back to the top