Uses of Interface
com.vaadin.ui.components.grid.Editor
-
Packages that use Editor Package Description com.vaadin.ui com.vaadin.ui.components.grid -
-
Uses of Editor in com.vaadin.ui
Methods in com.vaadin.ui that return Editor Modifier and Type Method Description protected Editor<T>
Grid. createEditor()
Creates a new Editor instance.Editor<T>
Grid. getEditor()
Returns theEditor
for this grid. -
Uses of Editor in com.vaadin.ui.components.grid
Classes in com.vaadin.ui.components.grid that implement Editor Modifier and Type Class Description class
EditorImpl<T>
Implementation ofEditor
interface.Methods in com.vaadin.ui.components.grid that return Editor Modifier and Type Method Description Editor<T>
EditorCancelEvent. getSource()
Editor<T>
EditorOpenEvent. getSource()
Editor<T>
EditorSaveEvent. getSource()
Editor<T>
Editor. setBinder(Binder<T> binder)
Sets the underlying Binder to this Editor.Editor<T>
EditorImpl. setBinder(Binder<T> binder)
Editor<T>
Editor. setBuffered(boolean buffered)
Sets the Editor buffered mode.Editor<T>
EditorImpl. setBuffered(boolean buffered)
Editor<T>
Editor. setCancelCaption(String cancelCaption)
Sets the caption of the cancel button in buffered mode.Editor<T>
EditorImpl. setCancelCaption(String cancelCaption)
Editor<T>
Editor. setEnabled(boolean enabled)
Enables or disabled the Editor.Editor<T>
EditorImpl. setEnabled(boolean enabled)
Editor<T>
Editor. setErrorGenerator(EditorErrorGenerator<T> errorGenerator)
Sets the error message generator for this editor.Editor<T>
EditorImpl. setErrorGenerator(EditorErrorGenerator<T> errorGenerator)
Editor<T>
Editor. setSaveCaption(String saveCaption)
Sets the caption of the save button in buffered mode.Editor<T>
EditorImpl. setSaveCaption(String saveCaption)
Constructors in com.vaadin.ui.components.grid with parameters of type Editor Constructor Description EditorCancelEvent(Editor<T> editor, T bean)
Constructor for a editor cancel event.EditorOpenEvent(Editor<T> editor, T bean)
Constructor for a editor open event.EditorSaveEvent(Editor<T> editor, T bean)
Constructor for a editor save event.
-