Hi,
I'm desperately searching a mean to add an action to the context menu of the debug Variables View.
I've tried :
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.debug.ui.variablesView.popupMenu?after=org.eclipse.debug.ui.actions.SelectAllVariablesAction">
<command
commandId="ObjectGraphViewer.command1"
id="TOTO"
label="TOTO"
style="push">
</command>
</menuContribution>
</extension>
and the deprecated method as well :
<extension
point="org.eclipse.ui.popupMenus">
<viewerContribution
id="ObjectGraphViewer.viewerContribution1"
targetID="org.eclipse.debug.ui.variablesView.popupMenu">
<action
class="org.eclipse.debug.internal.ui.viewers.model.VirtualCopyToClipboardActionDelegate"
definitionId="org.eclipse.ui.edit.copy"
id="ObjectGraphViewer.action1"
label="TOTOTOOTT">
</action>
</viewerContribution>
</extension>
But it doesn't work.
Thanks for your help
[Updated on: Wed, 08 April 2015 01:15]
Report message to a moderator