Serialized Form
-
Package com.flowingcode.vaadin.addons.easyform
-
Class com.flowingcode.vaadin.addons.easyform.EasyForm
-
Serialized Fields
-
bean
T bean
The bean the form is currently editing or was populated from, and the instance thatEasyForm.getValidBean()writes to. It isnullwhen no bean was set, and also afterEasyForm.clear(), which detaches it. -
beanType
Class<T> beanType
The bean type this form was created for. -
binder
Binder<T> binder
The internal binder that manages data binding and validation. -
buttonBar
HorizontalLayout buttonBar
-
cancelAction
SerializableRunnable cancelAction
-
cancelButton
Button cancelButton
The cancel button. Only displayed after a cancel action is set. -
cancelButtonVisibleOverride
Boolean cancelButtonVisibleOverride
-
fieldOrder
Set<String> fieldOrder
-
fields
Map<String,
EasyForm.Field<?>> fields -
formLayout
FormLayout formLayout
The internal layout where the generated fields are placed. -
i18n
EasyForm.EasyFormI18n i18n
The texts of the button bar. -
instanceFactories
Map<Class<?>,
com.flowingcode.vaadin.addons.easyform.EasyForm.ComponentFactory> instanceFactories -
labelGenerator
SerializableFunction<String,
String> labelGenerator -
lastBean
T lastBean
The last bean set, remembered so thatEasyForm.reset()can restore it after a clear. -
saveAction
SerializableConsumer<T> saveAction
-
saveButton
Button saveButton
The save button. Only displayed after a save action is set. -
saveButtonVisibleOverride
Boolean saveButtonVisibleOverride
-
writeThrough
boolean writeThrough
-
-
-
Class com.flowingcode.vaadin.addons.easyform.EasyForm.EasyFormI18n
class EasyFormI18n extends Object implements Serializable -
Class com.flowingcode.vaadin.addons.easyform.EasyForm.Field
class Field extends Object implements Serializable-
Serialized Fields
-
binding
Binder.Binding<?,
?> binding -
colSpan
int colSpan
-
component
HasValue<?,
V> component The underlying Vaadin component of this field, ornullif the property type has no component factory. -
componentExplicit
boolean componentExplicit
-
converter
Converter<?,
?> converter -
factoryConverter
Converter<?,
?> factoryConverter -
form
EasyForm<?> form
-
helperText
String helperText
-
label
String label
-
placeholder
String placeholder
-
propertyName
String propertyName
The name of the bean property this field is generated for. -
propertyType
Class<?> propertyType
-
requiredMessage
String requiredMessage
-
state
com.flowingcode.vaadin.addons.easyform.EasyForm.Field.State state
-
validators
List<Validator<?>> validators
-
-
-