diff options
author | Henrik Paul <henrik@vaadin.com> | 2014-08-04 12:51:37 +0300 |
---|---|---|
committer | Henrik Paul <henrik@vaadin.com> | 2014-08-04 12:51:37 +0300 |
commit | e16a0fb28ec04266ab01b6b9ff001b19cf32944b (patch) | |
tree | 23fde39a71207a9cede0d2de8edb4407f41d33e8 /shared | |
parent | 27d1b5cb864cb56f41d796d552e4a1d6c2637fa8 (diff) | |
download | vaadin-framework-e16a0fb28ec04266ab01b6b9ff001b19cf32944b.tar.gz vaadin-framework-e16a0fb28ec04266ab01b6b9ff001b19cf32944b.zip |
Remove deprecated header/footer API (#13334)
Change-Id: I9bddef300a817fd31054515e97bc6924370d3475
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java | 46 | ||||
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridState.java | 5 |
2 files changed, 0 insertions, 51 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java b/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java deleted file mode 100644 index d3d5ea2495..0000000000 --- a/shared/src/com/vaadin/shared/ui/grid/ColumnGroupRowState.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright 2000-2013 Vaadin Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not - * use this file except in compliance with the License. You may obtain a copy of - * the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT - * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the - * License for the specific language governing permissions and limitations under - * the License. - */ - -package com.vaadin.shared.ui.grid; - -import java.io.Serializable; -import java.util.ArrayList; -import java.util.List; - -/** - * The column group row data shared between the server and client - * - * @since - * @author Vaadin Ltd - */ -public class ColumnGroupRowState implements Serializable { - - /** - * The groups that has been added to the row - */ - public List<ColumnGroupState> groups = new ArrayList<ColumnGroupState>(); - - /** - * Is the header shown - */ - public boolean headerVisible = true; - - /** - * Is the footer shown - */ - public boolean footerVisible = false; - -} diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java index 68ee64dfe4..54acc80127 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java @@ -103,11 +103,6 @@ public class GridState extends AbstractComponentState { public GridStaticSectionState footer = new GridStaticSectionState(); /** - * The column groups added to the grid - */ - public List<ColumnGroupRowState> columnGroupRows = new ArrayList<ColumnGroupRowState>(); - - /** * The id for the last frozen column. * * @see GridColumnState#id |