Package com.vaadin.data
Interface Property.Viewer
-
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
Field<T>
,Property.Editor
- All Known Implementing Classes:
AbstractField
,AbstractSelect
,AbstractTextField
,CheckBox
,ComboBox
,CustomField
,DateField
,Form
,InlineDateField
,Label
,ListSelect
,NativeSelect
,OptionGroup
,PasswordField
,PopupDateField
,ProgressBar
,ProgressIndicator
,PropertyFormatter
,RichTextArea
,Select
,Slider
,Table
,TextArea
,TextField
,Tree
,TreeTable
,TwinColSelect
public static interface Property.Viewer extends Serializable
Interface implemented by the viewer classes capable of using a Property as a data source.- Since:
- 3.0
- Author:
- Vaadin Ltd.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Property
getPropertyDataSource()
Gets the Property serving as the data source of the viewer.void
setPropertyDataSource(Property newDataSource)
Sets the Property that serves as the data source of the viewer.
-
-
-
Method Detail
-
setPropertyDataSource
void setPropertyDataSource(Property newDataSource)
Sets the Property that serves as the data source of the viewer.- Parameters:
newDataSource
- the new data source Property
-
getPropertyDataSource
Property getPropertyDataSource()
Gets the Property serving as the data source of the viewer.- Returns:
- the Property serving as the viewers data source
-
-