diff options
author | Tomi Virkki <virkki@vaadin.com> | 2015-03-24 15:12:09 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2015-04-18 17:23:31 +0000 |
commit | be90c6d21607d504cc559884c5f7df49289def30 (patch) | |
tree | 1606031dfc7f2009b7fb8149c8949f3730dcf7c9 /client/src | |
parent | 91e8ced55c07629ee9955ea6a8dcb3019be13248 (diff) | |
download | vaadin-framework-be90c6d21607d504cc559884c5f7df49289def30.tar.gz vaadin-framework-be90c6d21607d504cc559884c5f7df49289def30.zip |
Made grid StaticCell and StaticRow public (#17415)
These supertypes are needed at least in the Components project.
Change-Id: I7a9314c5198d99074ae42f6b0f3b8bd7e84d71e2
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/com/vaadin/client/widgets/Grid.java | 6 |
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>(); |