Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 7a3cc874509cc8af21d946e9631de4bc1ac5df98 (plain) (tree)































                                                                                                            
<?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.serial.types.SerialConnectorType"
            id="org.eclipse.tcf.te.ui.terminals.type.serial"
            label="%SerialConnectorType.label">
      </connectorType>
   </extension>
   
<!-- Terminals launcher delegate contributions -->
   <extension point="org.eclipse.tcf.te.ui.terminals.launcherDelegates">
      <delegate
            class="org.eclipse.tcf.te.ui.terminals.serial.launcher.SerialLauncherDelegate"
            id="org.eclipse.tcf.te.ui.terminals.serial.launcher.serial"
            label="%SerialLauncherDelegate.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