Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions debug/org.eclipse.debug.ui/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1505,38 +1505,38 @@
definitionId="org.eclipse.ui.edit.copy"
helpContextId="copy_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpointGroups.CopyBreakpointsActionDelegate"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.breakpointsView.toolbar.copy"/>
<action
label="%SelectAll.label"
helpContextId="select_all_breakpoints_action_context"
definitionId="org.eclipse.ui.edit.selectAll"
class="org.eclipse.debug.internal.ui.actions.breakpoints.SelectAllBreakpointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.SelectAllBreakpointsAction">
</action>
<action
label="%RemoveAllAction.label"
icon="$nl$/icons/full/elcl16/rem_all_co.png"
helpContextId="remove_all_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveAllBreakpointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.RemoveAllBreakpoints">
</action>
<action
label="%RemoveAllTriggerpoints.label"
icon="$nl$/icons/full/elcl16/rem_all_triggers.png"
helpContextId="remove_all_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveAllTriggerPointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.RemoveAllTriggerpoints">
</action>
<action
label="%RemoveAction.label"
icon="$nl$/icons/full/elcl16/rem_co.png"
helpContextId="remove_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveBreakpointAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
enablesFor="+"
id="org.eclipse.debug.ui.breakpointsView.toolbar.remove">
</action>
Expand All @@ -1545,7 +1545,7 @@
icon="$nl$/icons/full/elcl16/disabled_co.png"
helpContextId="disable_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.DisableAllBreakpointsAction"
menubarPath="breakpointGroup"
menubarPath="BreakpointAdditionalGroup"
id="org.eclipse.debug.ui.actions.DisableAllBreakpoint">
</action>
<action
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ protected void fillContextMenu(IMenuManager menu) {
menu.add(getAction(ACTION_GOTO_MARKER));
menu.add(new Separator(IDebugUIConstants.EMPTY_BREAKPOINT_GROUP));
menu.add(new Separator(IDebugUIConstants.BREAKPOINT_GROUP));
Separator separator = new Separator(IDebugUIConstants.BREAKPOINT_ADDITIONAL_GROUP);
separator.setVisible(false);
menu.add(separator);
IAction action = getAction(PASTE_ACTION);
if (action != null) {
menu.add(action);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -774,6 +774,14 @@ public interface IDebugUIConstants {
*/
String BREAKPOINT_GROUP = "breakpointGroup"; //$NON-NLS-1$

/**
* Identifier for breakpoint operations other than enable/disable succeeding a
* breakpoint group in a menu (value <code>"BreakpointAdditionalGroup"</code>).
*
* @since 3.18
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new public api

*/
String BREAKPOINT_ADDITIONAL_GROUP = "BreakpointAdditionalGroup"; //$NON-NLS-1$

/**
* Identifier for a "breakpoint group" group in a menu (value <code>"breakpointGroupGroup"</code>).
*
Expand Down
Loading