Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-debug-dev] problem creating the launchGroup


You still have to define the action for the pull-down and menu. see what external tools does:

   <extension
         point="org.eclipse.ui.actionSets">
      <actionSet
            label="%ActionSet.externalTools"
            visible="true"
            id="org.eclipse.ui.externaltools.ExternalToolsSet">
         <menu
               label="%Menu.run"
               path="additions"
               id="org.eclipse.ui.run">
            <separator
                  name="ExternalToolsGroup">
            </separator>
         </menu>
         <action
               label="%Action.externalTools"
               pulldown="true"
               icon="icons/full/ctool16/external_tools.gif"
               class="org.eclipse.ui.externaltools.internal.menu.ExternalToolMenuDelegate"
               menubarPath="org.eclipse.ui.run/ExternalToolsGroup"
               id="org.eclipse.ui.externaltools.ExternalToolMenuDelegateMenu">
         </action>
         <action
               definitionId="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar"
               label="%Action.externalTools"
               pulldown="true"
               icon="icons/full/ctool16/external_tools.gif"
               tooltip="%Action.externalToolsTip"
               class="org.eclipse.ui.externaltools.internal.menu.ExternalToolMenuDelegate"
               toolbarPath="org.eclipse.debug.ui.launchActionSet/debug"
               id="org.eclipse.ui.externaltools.ExternalToolMenuDelegateToolbar">
         </action>
      </actionSet>
   </extension>


"Alex Smirnoff" <alexsmr@xxxxxxxxxxxx>
Sent by: platform-debug-dev-admin@xxxxxxxxxxx

07/11/2003 04:06 PM
Please respond to platform-debug-dev

       
        To:        <platform-debug-dev@xxxxxxxxxxx>
        cc:        
        Subject:        [platform-debug-dev] problem creating the launchGroup




I'm trying to create a launchGroup  and something does not work: I don't see it appear in Perspective. Initially I  thought that the bug in 2.1 plugin schema was the reason, but I  have the same result with 3.0 stream.
 
I don't beleive this is a bug.  Probably this is my fault. I've attached the plugin.xml file. Any help will be  appreciated.
 
Thanks,
Alex.


#### plugin.xml has been removed from this note on July 11, 2003 by Darin Wright


Back to the top