From be90c6d21607d504cc559884c5f7df49289def30 Mon Sep 17 00:00:00 2001 From: Tomi Virkki Date: Tue, 24 Mar 2015 15:12:09 +0200 Subject: Made grid StaticCell and StaticRow public (#17415) These supertypes are needed at least in the Components project. Change-Id: I7a9314c5198d99074ae42f6b0f3b8bd7e84d71e2 --- client/src/com/vaadin/client/widgets/Grid.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/src') 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 extends ResizeComposite implements * @param * the type of the rows in the section */ - protected abstract static class StaticSection> { + public abstract static class StaticSection> { /** * 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 extends ResizeComposite implements * @param * the type of the cells in the row */ - abstract static class StaticRow { + public abstract static class StaticRow { private Map, CELLTYPE> cells = new HashMap, CELLTYPE>(); -- cgit v1.2.3