瀏覽代碼

Ensure Grid classes can be accessed (#18976)

Change-Id: I6ec97debfd12cd22121c3c8f08a947ff9fcbd4a1
tags/7.6.0.alpha7
Artur Signell 8 年之前
父節點
當前提交
a85e221774
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      server/src/com/vaadin/ui/Grid.java

+ 3
- 3
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;

Loading…
取消
儲存