diff options
author | Leif Åstrand <leif@vaadin.com> | 2012-12-19 10:05:48 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-12-19 10:05:48 +0000 |
commit | c36476f9ad3eb18434d69d697c416f90108c8346 (patch) | |
tree | 225e5615c7cd32a29c60a5414b7b425b6bd548fd | |
parent | 2f20812215b28d4589722dd25f149abefa1d8e91 (diff) | |
parent | 873e10e5083712be52ea51990cf0e20791650afa (diff) | |
download | vaadin-framework-c36476f9ad3eb18434d69d697c416f90108c8346.tar.gz vaadin-framework-c36476f9ad3eb18434d69d697c416f90108c8346.zip |
Merge "Deprecate FormFieldFactory (#10545)"
-rw-r--r-- | server/src/com/vaadin/ui/FormFieldFactory.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/FormFieldFactory.java b/server/src/com/vaadin/ui/FormFieldFactory.java index f3ff6f5184..533c3a37c2 100644 --- a/server/src/com/vaadin/ui/FormFieldFactory.java +++ b/server/src/com/vaadin/ui/FormFieldFactory.java @@ -18,6 +18,7 @@ package com.vaadin.ui; import java.io.Serializable; import com.vaadin.data.Item; +import com.vaadin.data.fieldgroup.FieldGroup; /** * Factory interface for creating new Field-instances based on {@link Item}, @@ -30,7 +31,10 @@ import com.vaadin.data.Item; * @author Vaadin Ltd. * @since 6.0 * @see TableFieldFactory + * @deprecated As of 7.0, use {@link FieldGroup} instead of {@link Form} for + * more flexibility. */ +@Deprecated public interface FormFieldFactory extends Serializable { /** * Creates a field based on the item, property id and the component (most |