Class AbstractForm<D>

java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<com.vaadin.flow.component.Component>
com.storedobject.vaadin.AbstractForm<D>
Type Parameters:
D - Type of data object in the form
All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier, com.vaadin.flow.component.DetachNotifier, com.vaadin.flow.component.HasElement, com.vaadin.flow.component.HasStyle, Serializable
Direct Known Subclasses:
Form, ObjectForm

public abstract class AbstractForm<D> extends com.vaadin.flow.component.Composite<com.vaadin.flow.component.Component>
Class to represent a "data entry form". A "field" in the form is a HasValue. Form internally keeps Data that is a structure that keeps data for all the "fields" of the form.

A form is not used directly in most cases. Instead, a View derived from AbstractDataForm is used where a form is already embedded. All overridable methods in the form can be defined in AbstractDataForm too.

If at all required to use it directly, one should use Form instead of AbstractForm.

Author:
Syam
See Also: