Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 82bd5233352bd7ce5d85a9fc6f636ad790638359 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                      
 
                                              
                                                                     
                    

                                                                              



                                            

                                                                        
               

                                                                                    




                                                          
                                                                                                     





                            
<?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.ssh.types.SshConnectorType"
            id="org.eclipse.tcf.te.ui.terminals.type.ssh"
            label="%SshConnectorType.label">
      </connectorType>
   </extension>
   
<!-- Terminals launcher delegate contributions -->
   <extension point="org.eclipse.tcf.te.ui.terminals.launcherDelegates">
      <delegate
            class="org.eclipse.tcf.te.ui.terminals.ssh.launcher.SshLauncherDelegate"
            id="org.eclipse.tcf.te.ui.terminals.ssh.launcher.ssh"
            label="%SshLauncherDelegate.label">
            <enablement>
               <with variable="selection">
                  <count value="1"/>
                  <iterate operator="and" ifEmpty="false">
                     <instanceof value="org.eclipse.tcf.te.tcf.locator.interfaces.nodes.IPeerModel"/>
                  </iterate>
               </with>
            </enablement>
      </delegate>
   </extension>
</plugin>

Back to the top