From f3e06f4f4157ed4675619608b5da4cd7e5584876 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aki=20V=C3=A4liaho?= Date: Mon, 26 Mar 2018 07:05:17 +0000 Subject: [PATCH] Add API for accessing PropertySet of Grid (#10714) --- server/src/main/java/com/vaadin/ui/Grid.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/server/src/main/java/com/vaadin/ui/Grid.java b/server/src/main/java/com/vaadin/ui/Grid.java index b7722759f0..22ac453216 100644 --- a/server/src/main/java/com/vaadin/ui/Grid.java +++ b/server/src/main/java/com/vaadin/ui/Grid.java @@ -2517,6 +2517,17 @@ public class Grid extends AbstractListing implements HasComponents, } + /** + * Returns the property set used by this grid. + * + * @return propertySet + * the property set to return + * @since + */ + protected PropertySet getPropertySet() { + return propertySet; + } + /** * Creates a grid using a custom {@link PropertySet} implementation for * creating a default set of columns and for resolving property names with -- 2.39.5