com.vaadin.data.fieldgroup.
Class DefaultFieldGroupFieldFactory
- java.lang.Object
-
- com.vaadin.data.fieldgroup.DefaultFieldGroupFieldFactory
-
All Implemented Interfaces:
Direct Known Subclasses:
public class DefaultFieldGroupFieldFactory extends Object implements FieldGroupFieldFactory
This class contains a basic implementation for
FieldGroupFieldFactory
.The class is singleton, useget()
method to get reference to the instance.Author:
Vaadin Ltd
See Also:
-
-
Field Summary
Fields Modifier and Type Field and Description static Object
CAPTION_PROPERTY_ID
-
Constructor Summary
Constructors Modifier Constructor and Description protected
DefaultFieldGroupFieldFactory()
-
Method Summary
All Methods Modifier and Type Method and Description protected boolean
anyField(Class<?> fieldType)
protected boolean
anySelect(Class<? extends Field> fieldType)
protected <T extends AbstractTextField>
TcreateAbstractTextField(Class<T> fieldType)
protected <T extends Field>
TcreateBooleanField(Class<T> fieldType)
protected AbstractSelect
createCompatibleSelect(Class<? extends AbstractSelect> fieldType)
protected <T extends Field>
TcreateDefaultField(Class<?> type, Class<T> fieldType)
Fallback when no specific field has been created.
<T extends Field>
TcreateField(Class<?> type, Class<T> fieldType)
Creates a field based on the data type that we want to edit
protected RichTextArea
createRichTextArea()
static DefaultFieldGroupFieldFactory
get()
Gets the singleton instance.
protected void
populateWithEnumData(AbstractSelect select, Class<? extends Enum> enumClass)
Populates the given select with all the enums in the given
Enum
class.
-
-
-
Field Detail
-
CAPTION_PROPERTY_ID
public static final Object CAPTION_PROPERTY_ID
-
-
Method Detail
-
get
public static DefaultFieldGroupFieldFactory get()
Gets the singleton instance.
Returns:
the singleton instance
Since:
7.4
-
createField
public <T extends Field> T createField(Class<?> type, Class<T> fieldType)
Description copied from interface:
FieldGroupFieldFactory
Creates a field based on the data type that we want to edit
Specified by:
createField
in interfaceFieldGroupFieldFactory
Parameters:
type
- The type that we want to edit using the fieldfieldType
- The type of field we want to create. If set toField
then any type of field is acceptedReturns:
A field that can be assigned to the given fieldType and that is capable of editing the given type of data
-
createRichTextArea
protected RichTextArea createRichTextArea()
-
createCompatibleSelect
protected AbstractSelect createCompatibleSelect(Class<? extends AbstractSelect> fieldType)
-
anyField
protected boolean anyField(Class<?> fieldType)
Parameters:
fieldType
- the type of the fieldReturns:
true if any AbstractField can be assigned to the field
Since:
7.4
-
anySelect
protected boolean anySelect(Class<? extends Field> fieldType)
Parameters:
fieldType
- the type of the fieldReturns:
true if any AbstractSelect can be assigned to the field
Since:
7.4
-
createAbstractTextField
protected <T extends AbstractTextField> T createAbstractTextField(Class<T> fieldType)
-
createDefaultField
protected <T extends Field> T createDefaultField(Class<?> type, Class<T> fieldType)
Fallback when no specific field has been created. Typically returns a TextField.
Type Parameters:
T
- The type of field to createParameters:
type
- The type of data that should be editedfieldType
- The type of field to createReturns:
A field capable of editing the data or null if no field could be created
-
populateWithEnumData
protected void populateWithEnumData(AbstractSelect select, Class<? extends Enum> enumClass)
Populates the given select with all the enums in the given
Enum
class. UsesEnum
.toString() for caption.Parameters:
select
- The select to populateenumClass
- The Enum class to use
-
-