diff options
-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; |