diff options
author | Artur Signell <artur@vaadin.com> | 2015-09-25 10:46:07 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-09-28 06:52:52 +0000 |
commit | a85e221774b5b4936a886005ec64d0d07a5c63f8 (patch) | |
tree | 5519c661562b41fce49fa3931807647ab7f6dcda /server/src/com/vaadin | |
parent | c08014ed2c6367503a690bf4a47c090f3a43d5de (diff) | |
download | vaadin-framework-a85e221774b5b4936a886005ec64d0d07a5c63f8.tar.gz vaadin-framework-a85e221774b5b4936a886005ec64d0d07a5c63f8.zip |
Ensure Grid classes can be accessed (#18976)
Change-Id: I6ec97debfd12cd22121c3c8f08a947ff9fcbd4a1
Diffstat (limited to 'server/src/com/vaadin')
-rw-r--r-- | server/src/com/vaadin/ui/Grid.java | 6 |
1 files changed, 3 insertions, 3 deletions
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 <ROWTYPE> * the type of the rows in the section */ - abstract static class StaticSection<ROWTYPE extends StaticSection.StaticRow<?>> + public abstract static class StaticSection<ROWTYPE extends StaticSection.StaticRow<?>> implements Serializable { /** @@ -1828,8 +1828,8 @@ public class Grid extends AbstractFocusable implements SelectionNotifier, * @param <CELLTYPE> * the type of the cells in the row */ - abstract static class StaticRow<CELLTYPE extends StaticCell> implements - Serializable { + public abstract static class StaticRow<CELLTYPE extends StaticCell> + implements Serializable { private RowState rowState = new RowState(); protected StaticSection<?> section; |