[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[news.eclipse.tools] New action / group to the Run menu
|
I tried to add my actions to the standard Eclipse menu. Then I wrote the
actionSet section in my plugin.xml file, for example -
<actionSet
label="My Run Action Set"
visible="true"
id="my.run.actionSet">
<action
label="Terminate"
icon="icons/terminate.gif"
tooltip="Terminate process"
class="my.action.TerminateAction"
id="my.action.TerminateAction"
menubarPath="navigate/my.action.TerminateAction"
toolbarPath="My Group">
</action>
</actionSet>
It works for Project, File Navigate and Edit menu groups and does not work
for Run. What "id" should I use to add my action to the Run Eclipse menu?
Thanks,
Yuri