com.vaadin.data.
Interface BufferedValidatable
All Superinterfaces:
All Known Subinterfaces:
All Known Implementing Classes:
AbstractField, AbstractSelect, AbstractTextField, Button, CheckBox, ComboBox, DateField, Form, InlineDateField, ListSelect, NativeButton, NativeSelect, OptionGroup, PasswordField, PopupDateField, ProgressIndicator, RichTextArea, Select, Slider, Table, TextArea, TextField, Tree, TreeTable, TwinColSelect
- extends Buffered, Validatable, Serializable
public interface BufferedValidatable
This interface defines the combination of Validatable
and
Buffered
interfaces. The combination of the interfaces defines
if the invalid data is committed to datasource.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd.
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered |
---|
Buffered.SourceException |
Method Summary | |
---|---|
boolean |
isInvalidCommitted()
Tests if the invalid data is committed to datasource. |
void |
setInvalidCommitted(boolean isCommitted)
Sets if the invalid data should be committed to datasource. |
Methods inherited from interface com.vaadin.data.Buffered |
---|
commit, discard, isModified, isReadThrough, isWriteThrough, setReadThrough, setWriteThrough |
Methods inherited from interface com.vaadin.data.Validatable |
---|
addValidator, getValidators, isInvalidAllowed, isValid, removeValidator, setInvalidAllowed, validate |
Method Detail |
---|
isInvalidCommitted
boolean isInvalidCommitted()
Tests if the invalid data is committed to datasource. The default is
false
.
setInvalidCommitted
void setInvalidCommitted(boolean isCommitted)
Sets if the invalid data should be committed to datasource. The default
is false
.