Browse Source

Ensure Grid classes can be accessed (#18976)

Change-Id: I6ec97debfd12cd22121c3c8f08a947ff9fcbd4a1
tags/7.6.0.alpha7
Artur Signell 8 years ago
parent
commit
a85e221774
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      server/src/com/vaadin/ui/Grid.java

+ 3
- 3
server/src/com/vaadin/ui/Grid.java View File

@@ -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;

Loading…
Cancel
Save