Package com.vaadin.data
Interface BufferedValidatable
-
- All Superinterfaces:
Buffered
,Serializable
,Validatable
- All Known Subinterfaces:
Field<T>
- All Known Implementing Classes:
AbstractField
,AbstractSelect
,AbstractTextField
,CheckBox
,ComboBox
,CustomField
,DateField
,Form
,InlineDateField
,ListSelect
,NativeSelect
,OptionGroup
,PasswordField
,PopupDateField
,ProgressBar
,ProgressIndicator
,RichTextArea
,Select
,Slider
,Table
,TextArea
,TextField
,Tree
,TreeTable
,TwinColSelect
public interface BufferedValidatable extends Buffered, Validatable, Serializable
This interface defines the combination of
Validatable
andBuffered
interfaces. The combination of the interfaces defines if the invalid data is committed to datasource.- Since:
- 3.0
- Author:
- Vaadin Ltd.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered
Buffered.SourceException
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description 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, isBuffered, isModified, setBuffered
-
Methods inherited from interface com.vaadin.data.Validatable
addValidator, getValidators, isInvalidAllowed, isValid, removeAllValidators, removeValidator, setInvalidAllowed, validate
-
-