aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/widgets/Grid.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java
index 5eabbec621..84ba3e5704 100644
--- a/client/src/com/vaadin/client/widgets/Grid.java
+++ b/client/src/com/vaadin/client/widgets/Grid.java
@@ -193,13 +193,13 @@ public class Grid<T> extends ResizeComposite implements
* @param <ROWTYPE>
* the type of the rows in the section
*/
- protected abstract static class StaticSection<ROWTYPE extends StaticSection.StaticRow<?>> {
+ public abstract static class StaticSection<ROWTYPE extends StaticSection.StaticRow<?>> {
/**
* A header or footer cell. Has a simple textual caption.
*
*/
- static class StaticCell {
+ public static class StaticCell {
private Object content = null;
@@ -372,7 +372,7 @@ public class Grid<T> extends ResizeComposite implements
* @param <CELLTYPE>
* the type of the cells in the row
*/
- abstract static class StaticRow<CELLTYPE extends StaticCell> {
+ public abstract static class StaticRow<CELLTYPE extends StaticCell> {
private Map<Column<?, ?>, CELLTYPE> cells = new HashMap<Column<?, ?>, CELLTYPE>();