Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: cc0410f52d7a4b944ba5782da3216d53dfe0f48f (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">
                     <test
                           forcePluginActivation="true"
                           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