Uses of Interface
com.vaadin.data.Property
-
Packages that use Property Package Description com.vaadin.data com.vaadin.data.fieldgroup com.vaadin.data.util com.vaadin.data.util.sqlcontainer com.vaadin.ui -
-
Uses of Property in com.vaadin.data
Subinterfaces of Property in com.vaadin.data Modifier and Type Interface Description static interface
Property.Transactional<T>
A Property that is capable of handle a transaction that can end in commit or rollback.Methods in com.vaadin.data that return Property Modifier and Type Method Description Property
Container. getContainerProperty(Object itemId, Object propertyId)
Gets the Property identified by the given itemId and propertyId from the Container.Property
Item. getItemProperty(Object id)
Gets the Property corresponding to the given Property ID stored in the Item.Property
Property.ReadOnlyStatusChangeEvent. getProperty()
Property whose read-only state has changed.Property
Property.ValueChangeEvent. getProperty()
Retrieves the Property that has been modified.Property
Property.Viewer. getPropertyDataSource()
Gets the Property serving as the data source of the viewer.Methods in com.vaadin.data with parameters of type Property Modifier and Type Method Description boolean
Item. addItemProperty(Object id, Property property)
Tries to add a new Property into the Item.void
Property.Viewer. setPropertyDataSource(Property newDataSource)
Sets the Property that serves as the data source of the viewer. -
Uses of Property in com.vaadin.data.fieldgroup
Methods in com.vaadin.data.fieldgroup that return Property Modifier and Type Method Description protected Property
FieldGroup. getItemProperty(Object propertyId)
Gets the property with the given property id from the item.Methods in com.vaadin.data.fieldgroup with parameters of type Property Modifier and Type Method Description protected <T> Property.Transactional<T>
FieldGroup. wrapInTransactionalProperty(Property<T> itemProperty)
Wrap property to transactional property. -
Uses of Property in com.vaadin.data.util
Classes in com.vaadin.data.util that implement Property Modifier and Type Class Description class
AbstractProperty<T>
Abstract base class forProperty
implementations.protected static class
GeneratedPropertyContainer.GeneratedProperty<T>
Property implementation for generated propertiesclass
MethodProperty<T>
Proxy class for creating Properties from pairs of getter and setter methods of a Bean property.class
NestedMethodProperty<T>
Nested accessor based property for a bean.class
ObjectProperty<T>
A simple data object containing one typed value.class
PropertyFormatter<T>
Deprecated.As of 7.0, replaced byConverter
class
TextFileProperty
Property implementation for wrapping a text file.class
TransactionalPropertyWrapper<T>
Wrapper class that helps implement two-phase commit for a non-transactional property.Methods in com.vaadin.data.util that return Property Modifier and Type Method Description Property<?>
MethodPropertyDescriptor. createProperty(Object bean)
Property<?>
NestedPropertyDescriptor. createProperty(BT bean)
Property<?>
VaadinPropertyDescriptor. createProperty(BT bean)
Creates a newProperty
instance for this property for a bean.Property
AbstractBeanContainer. getContainerProperty(Object itemId, Object propertyId)
Property
ContainerHierarchicalWrapper. getContainerProperty(Object itemId, Object propertyId)
Property
ContainerOrderedWrapper. getContainerProperty(Object itemId, Object propertyId)
Property
FilesystemContainer. getContainerProperty(Object itemId, Object propertyId)
Gets the specified property of the specified file Item.Property<?>
GeneratedPropertyContainer. getContainerProperty(Object itemId, Object propertyId)
Property
IndexedContainer. getContainerProperty(Object itemId, Object propertyId)
Property
FilesystemContainer.FileItem. getItemProperty(Object id)
Property
GeneratedPropertyContainer.GeneratedPropertyItem. getItemProperty(Object id)
Property
PropertysetItem. getItemProperty(Object id)
Gets the Property corresponding to the given Property ID stored in the Item.Property
AbstractProperty.ReadOnlyStatusChangeEvent. getProperty()
Gets the Property whose read-only state has changed.Property
MethodProperty.MethodException. getProperty()
Gets the method property this exception originates from.Property<T>
PropertyFormatter. getPropertyDataSource()
Deprecated.Gets the current data source of the formatter, if any.Property<T>
TransactionalPropertyWrapper. getWrappedProperty()
Methods in com.vaadin.data.util with parameters of type Property Modifier and Type Method Description boolean
FilesystemContainer.FileItem. addItemProperty(Object id, Property property)
Filesystem container does not support adding new properties.boolean
GeneratedPropertyContainer.GeneratedPropertyItem. addItemProperty(Object id, Property property)
boolean
PropertysetItem. addItemProperty(Object id, Property property)
Tries to add a new Property into the Item.static String
LegacyPropertyHelper. legacyPropertyToString(Property p)
Deprecated.Returns the property value converted to a String.static void
LegacyPropertyHelper. maybeLogLegacyPropertyToStringWarning(Property p)
Deprecated.void
PropertyFormatter. setPropertyDataSource(Property newDataSource)
Deprecated.Sets the specified Property as the data source for the formatter.Constructors in com.vaadin.data.util with parameters of type Property Constructor Description MethodException(Property property, String msg)
Constructs a newMethodException
with the specified detail message.MethodException(Property property, Throwable cause)
Constructs a newMethodException
from another exception.PropertyFormatter(Property<T> propertyDataSource)
Deprecated.Construct a new formatter that is connected to given data source.ReadOnlyStatusChangeEvent(Property source)
Constructs a new read-only status change event for this object.TransactionalPropertyWrapper(Property<T> wrappedProperty)
-
Uses of Property in com.vaadin.data.util.sqlcontainer
Classes in com.vaadin.data.util.sqlcontainer that implement Property Modifier and Type Class Description class
ColumnProperty
ColumnProperty represents the value of one column in a RowItem.Methods in com.vaadin.data.util.sqlcontainer that return Property Modifier and Type Method Description Property
SQLContainer. getContainerProperty(Object itemId, Object propertyId)
Property
RowItem. getItemProperty(Object id)
Methods in com.vaadin.data.util.sqlcontainer with parameters of type Property Modifier and Type Method Description boolean
RowItem. addItemProperty(Object id, Property property)
Adding properties is not supported. -
Uses of Property in com.vaadin.ui
Subinterfaces of Property in com.vaadin.ui Modifier and Type Interface Description interface
Field<T>
Field interface is implemented by all classes (field components) that have a value that the user can change through the user interface.Classes in com.vaadin.ui that implement Property Modifier and Type Class Description class
AbstractField<T>
Abstract field component for implementing buffered property editors.class
AbstractSelect
A class representing a selection of items the user has selected in a UI.class
AbstractTextField
class
CheckBox
class
ComboBox
A filtering dropdown single-select.class
CustomField<T>
AField
whose UI content can be constructed by the user, enabling the creation of e.g.class
DateField
A date editor component that can be bound to anyProperty
that is compatible withjava.util.Date
.class
Form
Deprecated.As of 7.0, useFieldGroup
instead ofForm
for more flexibility.class
InlineDateField
A date entry component, which displays the actual date selector inline.class
Label
Label component for showing non-editable short texts.class
ListSelect
This is a simple list select without, for instance, support for new items, lazyloading, and other advanced features.class
NativeSelect
This is a simple drop-down select without, for instance, support for multiselect, new items, lazyloading, and other advanced features.class
OptionGroup
Configures select to be used as an option group.class
PasswordField
A field that is used to enter secret text information like passwords.class
PopupDateField
A date entry component, which displays the actual date selector as a popup.class
ProgressBar
Shows the current progress of a long running task.class
ProgressIndicator
Deprecated.as of 7.1, useProgressBar
combined withUI#setPushMode(PushMode)
orUI.setPollInterval(int)
instead.class
RichTextArea
A simple RichTextArea to edit HTML format text.class
Select
Deprecated.As of 7.0.class
Slider
A component for selecting a numerical value within a range.class
Table
Table
is used for representing data or components in a pageable and selectable table.class
TextArea
A text field that supports multi line editing.class
TextField
A text editor component that can be bound to any bindable Property.class
Tree
Tree component.class
TreeTable
class
TwinColSelect
Multiselect component with two lists: left side for available items and right side for selected items.Methods in com.vaadin.ui that return Property Modifier and Type Method Description Property
AbstractSelect. getContainerProperty(Object itemId, Object propertyId)
Gets the Property identified by the given itemId and propertyId from the ContainerProperty
Form. getItemProperty(Object id)
Deprecated.The property identified by the property id.Property
AbstractField.ReadOnlyStatusChangeEvent. getProperty()
Property where the event occurred.Property
Field.ValueChangeEvent. getProperty()
Gets the Property which triggered the event.Property<?>
Grid.CellReference. getProperty()
Property
Label.ValueChangeEvent. getProperty()
Gets the Property that has been modified.Property
AbstractField. getPropertyDataSource()
Gets the current data source of the field, if any.Property
Label. getPropertyDataSource()
Gets the viewing data-source property.Methods in com.vaadin.ui with parameters of type Property Modifier and Type Method Description boolean
Form. addItemProperty(Object id, Property property)
Deprecated.Adds a new property to form and create corresponding field.protected void
Form. bindPropertyToField(Object propertyId, Property property, Field field)
Deprecated.Binds an item property to a field.protected void
Table. bindPropertyToField(Object rowId, Object colId, Property property, Field field)
Binds an item property to a field generated by TableFieldFactory.protected String
Table. formatPropertyValue(Object rowId, Object colId, Property<?> property)
Formats table cell property values.protected Object
Table. getPropertyValue(Object rowId, Object colId, Property property)
Gets the value of property.void
AbstractField. setPropertyDataSource(Property newDataSource)
Sets the specified Property as the data source for the field.void
Label. setPropertyDataSource(Property newDataSource)
Sets the property as data-source for viewing.Constructors in com.vaadin.ui with parameters of type Property Constructor Description CheckBox(String caption, Property<?> dataSource)
Creates a new checkbox that is connected to a boolean property.DateField(Property dataSource)
Constructs a newDateField
that's bound to the specifiedProperty
and has no caption.DateField(String caption, Property dataSource)
Constructs a newDateField
that's bound to the specifiedProperty
and has the given captionString
.InlineDateField(Property dataSource)
InlineDateField(String caption, Property dataSource)
Label(Property contentSource)
Creates a new instance of Label with text-contents read from given datasource.Label(Property contentSource, ContentMode contentMode)
Creates a new instance of Label with text-contents read from given datasource.PasswordField(Property dataSource)
Constructs a PasswordField with given property data source.PasswordField(String caption, Property dataSource)
Constructs a PasswordField with given caption and property data source.PopupDateField(Property dataSource)
PopupDateField(String caption, Property dataSource)
ProgressBar(Property<?> dataSource)
Creates a new progress bar bound to the given data source.ProgressIndicator(Property contentSource)
Deprecated.Creates a new instance of ProgressIndicator with state read from the given datasource.RichTextArea(Property dataSource)
Constructs a newRichTextArea
that's bound to the specifiedProperty
and has no caption.RichTextArea(String caption, Property dataSource)
Constructs a newRichTextArea
that's bound to the specifiedProperty
and has the given caption.TextArea(Property dataSource)
Constructs a TextArea with given property data source.TextArea(String caption, Property dataSource)
Constructs a TextArea with given caption and property data source.TextField(Property dataSource)
Constructs a newTextField
that's bound to the specifiedProperty
and has no caption.TextField(String caption, Property dataSource)
Constructs a newTextField
that's bound to the specifiedProperty
and has the given captionString
.
-