aboutsummaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2016-08-17 09:24:32 +0300
committerVaadin Code Review <review@vaadin.com>2016-08-17 10:18:19 +0000
commit9661839707a76de888a4ede6da4ab9a12d3c023a (patch)
treec1d82df95a70599d7d925a485f13645c2562b6d0 /shared
parentecde311474591931b8457f0b653aefa14350f0a6 (diff)
downloadvaadin-framework-9661839707a76de888a4ede6da4ab9a12d3c023a.tar.gz
vaadin-framework-9661839707a76de888a4ede6da4ab9a12d3c023a.zip
Remove Form and FormFieldFactory
Form was deprecated in Vaadin 7 when FieldGroup was introduced. In Vaadin 8, FieldGroup is deprecated in favor of Binder. Having three different "forms" would be very confusing. Change-Id: I17775c922940edc5df7dd5bdc80bfe9652588270
Diffstat (limited to 'shared')
-rw-r--r--shared/src/main/java/com/vaadin/shared/ui/form/FormState.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/shared/src/main/java/com/vaadin/shared/ui/form/FormState.java b/shared/src/main/java/com/vaadin/shared/ui/form/FormState.java
deleted file mode 100644
index 99ed11f8df..0000000000
--- a/shared/src/main/java/com/vaadin/shared/ui/form/FormState.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright 2000-2014 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.form;
-
-import com.vaadin.shared.AbstractFieldState;
-import com.vaadin.shared.Connector;
-
-public class FormState extends AbstractFieldState {
- {
- primaryStyleName = "v-form";
- }
- public Connector layout;
- public Connector footer;
-}