Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Fauth2023-01-04 22:49:46 +0000
committerDirk Fauth2023-01-04 22:49:46 +0000
commitb0fb9a9e99b946c675c536132034aedb6d1a06d3 (patch)
tree808da0b897a21a054c3d9f9b5defdc6f949b5cf8
parent5f0acc553b648a7b81874c29b1c2cc0c4cd7e8e0 (diff)
downloadorg.eclipse.nebula.widgets.nattable-b0fb9a9e99b946c675c536132034aedb6d1a06d3.tar.gz
org.eclipse.nebula.widgets.nattable-b0fb9a9e99b946c675c536132034aedb6d1a06d3.tar.xz
org.eclipse.nebula.widgets.nattable-b0fb9a9e99b946c675c536132034aedb6d1a06d3.zip
Bug 581285 - Make GroupByHeaderMenuConfiguration extensible
Signed-off-by: Dirk Fauth <dirk.fauth@googlemail.com> Change-Id: I20dab4f053381f813e078a94d019d3f2a9972c75
-rw-r--r--org.eclipse.nebula.widgets.nattable.extension.glazedlists/src/org/eclipse/nebula/widgets/nattable/extension/glazedlists/groupBy/GroupByHeaderMenuConfiguration.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.nebula.widgets.nattable.extension.glazedlists/src/org/eclipse/nebula/widgets/nattable/extension/glazedlists/groupBy/GroupByHeaderMenuConfiguration.java b/org.eclipse.nebula.widgets.nattable.extension.glazedlists/src/org/eclipse/nebula/widgets/nattable/extension/glazedlists/groupBy/GroupByHeaderMenuConfiguration.java
index 432761d6..79dbe0fb 100644
--- a/org.eclipse.nebula.widgets.nattable.extension.glazedlists/src/org/eclipse/nebula/widgets/nattable/extension/glazedlists/groupBy/GroupByHeaderMenuConfiguration.java
+++ b/org.eclipse.nebula.widgets.nattable.extension.glazedlists/src/org/eclipse/nebula/widgets/nattable/extension/glazedlists/groupBy/GroupByHeaderMenuConfiguration.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012, 2020 Original authors and others.
+ * Copyright (c) 2012, 2023 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -42,8 +42,10 @@ public class GroupByHeaderMenuConfiguration extends AbstractUiBindingConfigurati
/**
* The {@link GroupByHeaderLayer} to which the menu should be attached.
+ *
+ * @since 2.1
*/
- private final GroupByHeaderLayer groupByHeaderLayer;
+ protected final GroupByHeaderLayer groupByHeaderLayer;
/**
* The groupBy header menu.

Back to the top