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 classBeanPropertySet<T>APropertySetthat 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 aBeanPropertySetfor the given bean type.static <T> PropertySet<T>BeanPropertySet. get(Class<? extends T> beanType, boolean checkNestedDefinitions, PropertyFilterDefinition filterDefinition)Gets aBeanPropertySetfor the given bean type.PropertySet<T>PropertyDefinition. getPropertySet()Gets thePropertySetthat 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 customPropertySetimplementation 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 customPropertySetimplementation 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 voidGrid. 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 customPropertySetimplementation 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 aTreeGridusing a customPropertySetimplementation 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 customPropertySetimplementation 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 customPropertySetimplementation and custom data communicator.TreeGrid(PropertySet<T> propertySet, HierarchicalDataCommunicator<T> dataCommunicator)Creates aTreeGridusing a customPropertySetimplementation 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.
-