Joseph Carroll Messages: 156 Registered: May 2012 Location: Milwaukee, WI
Senior Member
Jeff-
I guess I don't understand your question fully. First of all, the actions framework (AFAIK) is completely deprecated from a pure Eclipse4 standpoint. You should port all of your actions to commands.
What are you trying to use the ToggleBreakPoint extension-point for?
Am 15.08.12 14:56, schrieb Jeff Doth:
> Hey JD,
>
> thanks for your reply. Basically I have the following in my plugin.xml:
>
> <extension point="org.eclipse.ui.editorActions">
> <editorContribution
> targetID="example.editor"
> id="example.rulerActions">
> <action
> label="Not Used"
>
> class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
> style="push"
> actionID="RulerDoubleClick"
> id="example.doubleClickBreakpointAction"/>
> </editorContribution>
> </extension>
>
> <extension point="org.eclipse.ui.popupMenus">
> <viewerContribution
> targetID="example.rulerContextMenuId"
> id="example.RulerPopupActions">
> <action
> label="Toggle Breakpoint"
>
> class="org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate"
> menubarPath="additions"
> id="example.rulerContextMenu.toggleBreakpointAction">
> </action>
> </viewerContribution>
>
> My question is how do I port the actions to commands? Do you have a page
> with port examples?