From a85e221774b5b4936a886005ec64d0d07a5c63f8 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Fri, 25 Sep 2015 10:46:07 +0300 Subject: Ensure Grid classes can be accessed (#18976) Change-Id: I6ec97debfd12cd22121c3c8f08a947ff9fcbd4a1 --- server/src/com/vaadin/ui/Grid.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server/src/com/vaadin') diff --git a/server/src/com/vaadin/ui/Grid.java b/server/src/com/vaadin/ui/Grid.java index ab3708ee28..469f85d947 100644 --- a/server/src/com/vaadin/ui/Grid.java +++ b/server/src/com/vaadin/ui/Grid.java @@ -1819,7 +1819,7 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * @param * the type of the rows in the section */ - abstract static class StaticSection> + public abstract static class StaticSection> implements Serializable { /** @@ -1828,8 +1828,8 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * @param * the type of the cells in the row */ - abstract static class StaticRow implements - Serializable { + public abstract static class StaticRow + implements Serializable { private RowState rowState = new RowState(); protected StaticSection section; -- cgit v1.2.3