com.vaadin.flow.component.crud.
Class BinderCrudEditor<E>
Type Parameters:
E
- the bean type
All Implemented Interfaces:
A CRUD editor that binds editor fields to bean properties using a
Binder
.
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBinderCrudEditor
(Binder<E> binder) Initializes a BinderCrudEditor with the given binder and no form view
BinderCrudEditor
(Binder<E> binder, Component view) Initializes a BinderCrudEditor with the given binder and form view
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clears the editor.
getItem()
Returns the item being edited.
getView()
Deprecated.
This method should not be used outside.void
Sets an item to be edited.
boolean
validate()
Runs validations on the data entered into an editor and returns their validity but could also have side-effects such as showing visual indicators for invalid fields.
void
Writes any pending input update (if any) to the item.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.crud.CrudEditor
setItem
-
Constructor Details
-
BinderCrudEditor
Initializes a BinderCrudEditor with the given binder and no form view
Parameters:
binder
- the editor binder -
BinderCrudEditor
Initializes a BinderCrudEditor with the given binder and form view
Parameters:
binder
- the editor binderview
- the form view
-
-
Method Details
-
setItem
Description copied from interface:
CrudEditor
Sets an item to be edited. This could be a newly instantiated item or an existing item from the grid.
Specified by:
setItem
in interfaceCrudEditor<E>
Parameters:
item
- the item to editvalidate
- if true the item will be validated immediately -
getItem
Description copied from interface:
CrudEditor
Returns the item being edited.
Specified by:
getItem
in interfaceCrudEditor<E>
Returns:
the item being edited
-
writeItemChanges
public void writeItemChanges()Description copied from interface:
CrudEditor
Writes any pending input update (if any) to the item.
Specified by:
writeItemChanges
in interfaceCrudEditor<E>
-
clear
public void clear()Clears the editor. Frees the item, and lazily clears all input fields.
Specified by:
clear
in interfaceCrudEditor<E>
-
validate
public boolean validate()Description copied from interface:
CrudEditor
Runs validations on the data entered into an editor and returns their validity but could also have side-effects such as showing visual indicators for invalid fields.
Specified by:
validate
in interfaceCrudEditor<E>
Returns:
true if valid or false if otherwise
-
getView
Deprecated.This method should not be used outside.Description copied from interface:
CrudEditor
Returns the user interface of an editor.
Specified by:
getView
in interfaceCrudEditor<E>
Returns:
the user interface
-