We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.ui.
Interface FieldFactory
All Superinterfaces:
All Known Implementing Classes:
- extends FormFieldFactory, TableFieldFactory
@Deprecated
public interface FieldFactory
Factory for creating new Field-instances based on type, datasource and/or context.
Since:
3.1
Version:
6.8.18
Author:
Vaadin Ltd.
Method Summary | |
---|---|
Field |
createField(Class<?> type,
Component uiContext)
Deprecated. Creates a field based on type of data. |
Field |
createField(Property property,
Component uiContext)
Deprecated. Creates a field based on the property datasource. |
Methods inherited from interface com.vaadin.ui.FormFieldFactory |
---|
createField |
Methods inherited from interface com.vaadin.ui.TableFieldFactory |
---|
createField |
Method Detail |
---|
createField
Field createField(Class<?> type,
Component uiContext)
- Parameters:
type
- the type of data presented in field.uiContext
- the component where the field is presented.- Returns:
- Field the field suitable for editing the specified data.
Deprecated.
Creates a field based on type of data.
createField
Field createField(Property property,
Component uiContext)
- Parameters:
property
- the property datasource.uiContext
- the component where the field is presented.- Returns:
- Field the field suitable for editing the specified data.
Deprecated.
Creates a field based on the property datasource.