ソースを参照

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;

読み込み中…
キャンセル
保存