From 87e0a08b6059add166b46b8b4379791a40ff0ede Mon Sep 17 00:00:00 2001 From: Teemu Suo-Anttila Date: Mon, 22 Aug 2016 16:39:50 +0300 Subject: Add a typed version of the Grid component Change-Id: I00cbe80ac72787de0c4cc88e1c223badc2c4ae89 --- .../com/vaadin/shared/ui/grid/ColumnState.java | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 shared/src/main/java/com/vaadin/shared/ui/grid/ColumnState.java (limited to 'shared/src') diff --git a/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnState.java b/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnState.java new file mode 100644 index 0000000000..bc04c4acb2 --- /dev/null +++ b/shared/src/main/java/com/vaadin/shared/ui/grid/ColumnState.java @@ -0,0 +1,25 @@ +/* + * Copyright 2000-2016 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 com.vaadin.shared.communication.SharedState; + +public class ColumnState extends SharedState { + + public String caption; + public String id; + public boolean sortable; +} -- cgit v1.2.3