Serialized Form
-
Package com.flowingcode.vaadin.addons.easyform
-
Class com.flowingcode.vaadin.addons.easyform.EasyForm
-
Serialized Fields
-
bean
T bean
The bean set throughEasyForm.setBean(Object)orEasyForm.readBean(Object), if any. -
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.EasyFormField<?>> fields -
formLayout
FormLayout formLayout
The internal layout where the generated fields are placed. -
instanceFactories
Map<Class<?>,
com.flowingcode.vaadin.addons.easyform.EasyForm.ComponentFactory> instanceFactories -
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.EasyFormField
class EasyFormField 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.EasyFormField.State state
-
validators
List<Validator<?>> validators
-
-
-