-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 578581 - MarkerSupportView custom groupings requires use of inter…
…nal GroupsContribution #133 Squashed commit of the following: commit e7a6202 Author: Enda O Brien <E.OBrien@pilz.ie> Date: Mon Jun 13 11:26:11 2022 +0100 Bug 578581 - MarkerSupportView custom groupings requires use of internal GroupsContribution
- Loading branch information
1 parent
8df2017
commit 1d2dc6e
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/markers/MarkerGroupsContribution.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package org.eclipse.ui.views.markers; | ||
|
||
import org.eclipse.jface.action.IContributionItem; | ||
import org.eclipse.ui.actions.CompoundContributionItem; | ||
import org.eclipse.ui.internal.views.markers.GroupsContribution; | ||
|
||
/** | ||
* @since 3.23 | ||
* | ||
*/ | ||
public class MarkerGroupsContribution extends CompoundContributionItem { | ||
|
||
@Override | ||
protected IContributionItem[] getContributionItems() { | ||
GroupsContribution gc = new GroupsContribution(); | ||
return gc.getContributionItems(); | ||
} | ||
} |