diff options
author | Aki Väliaho <akivvaliaho@gmail.com> | 2018-03-26 07:05:17 +0000 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2018-03-26 10:05:17 +0300 |
commit | f3e06f4f4157ed4675619608b5da4cd7e5584876 (patch) | |
tree | 8a65e93c5f25b778d689f807da671842cddba408 /server | |
parent | 7370e68fd52e0a2918d91fede5dddf3bb6e674f7 (diff) | |
download | vaadin-framework-f3e06f4f4157ed4675619608b5da4cd7e5584876.tar.gz vaadin-framework-f3e06f4f4157ed4675619608b5da4cd7e5584876.zip |
Add API for accessing PropertySet of Grid (#10714)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/main/java/com/vaadin/ui/Grid.java | 11 |
1 files changed, 11 insertions, 0 deletions
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 @@ -2518,6 +2518,17 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents, } /** + * Returns the property set used by this grid. + * + * @return propertySet + * the property set to return + * @since + */ + protected PropertySet<T> 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 * {@link #addColumn(String)} and |