Uses of Interface
com.vaadin.data.PropertySet
-
Packages that use PropertySet Package Description com.vaadin.data com.vaadin.ui com.vaadin.ui.components.grid -
-
Uses of PropertySet in com.vaadin.data
Classes in com.vaadin.data that implement PropertySet Modifier and Type Class Description class
BeanPropertySet<T>
A
PropertySet
that uses reflection to find bean properties.Methods in com.vaadin.data that return PropertySet Modifier and Type Method Description static <T> PropertySet<T>
BeanPropertySet. get(Class<? extends T> beanType)
Gets a
BeanPropertySet
for the given bean type.static <T> PropertySet<T>
BeanPropertySet. get(Class<? extends T> beanType, boolean checkNestedDefinitions, PropertyFilterDefinition filterDefinition)
Gets a
BeanPropertySet
for the given bean type.PropertySet<T>
PropertyDefinition. getPropertySet()
Gets the
PropertySet
that this property belongs to.Methods in com.vaadin.data with parameters of type PropertySet Modifier and Type Method Description static <BEAN> Binder<BEAN>
Binder. withPropertySet(PropertySet<BEAN> propertySet)
Creates a binder using a custom
PropertySet
implementation for finding and resolving property names forBinder.bindInstanceFields(Object)
,Binder.bind(HasValue, String)
andBinder.BindingBuilder.bind(String)
.Constructors in com.vaadin.data with parameters of type PropertySet Constructor Description Binder(PropertySet<BEAN> propertySet)
Creates a binder using a custom
PropertySet
implementation for finding and resolving property names forBinder.bindInstanceFields(Object)
,Binder.bind(HasValue, String)
andBinder.BindingBuilder.bind(String)
. -
Uses of PropertySet in com.vaadin.ui
Methods in com.vaadin.ui that return PropertySet Modifier and Type Method Description protected PropertySet<T>
Grid. getPropertySet()
Returns the property set used by this grid.
Methods in com.vaadin.ui with parameters of type PropertySet Modifier and Type Method Description protected void
Grid. setPropertySet(PropertySet<T> propertySet)
Sets the property set to use for this grid.
static <BEAN> Grid<BEAN>
Grid. withPropertySet(PropertySet<BEAN> propertySet)
Creates a grid using a custom
PropertySet
implementation for creating a default set of columns and for resolving property names withGrid.addColumn(String)
andGrid.Column.setEditorComponent(HasValue)
.static <BEAN> TreeGrid<BEAN>
TreeGrid. withPropertySet(PropertySet<BEAN> propertySet)
Creates a
TreeGrid
using a customPropertySet
implementation for creating a default set of columns and for resolving property names withGrid.addColumn(String)
andGrid.Column.setEditorComponent(HasValue)
.Constructors in com.vaadin.ui with parameters of type PropertySet Constructor Description Grid(PropertySet<T> propertySet)
Creates a grid using a custom
PropertySet
implementation for configuring the initial columns and resolving property names forGrid.addColumn(String)
andGrid.Column.setEditorComponent(HasValue)
.Grid(PropertySet<T> propertySet, DataCommunicator<T> dataCommunicator)
Creates a grid using a custom
PropertySet
implementation and custom data communicator.TreeGrid(PropertySet<T> propertySet, HierarchicalDataCommunicator<T> dataCommunicator)
Creates a
TreeGrid
using a customPropertySet
implementation and custom data communicator. -
Uses of PropertySet in com.vaadin.ui.components.grid
Constructors in com.vaadin.ui.components.grid with parameters of type PropertySet Constructor Description EditorImpl(PropertySet<T> propertySet)
Constructor for internal implementation of the Editor.
-