Package com.vaadin.data.util
Interface VaadinPropertyDescriptor<BT>
-
- Type Parameters:
BT- bean type
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
MethodPropertyDescriptor,NestedPropertyDescriptor
public interface VaadinPropertyDescriptor<BT> extends Serializable
Property descriptor that can create a property instance for a bean. Used byBeanItemandAbstractBeanContainerto keep track of the set of properties of items.- Since:
- 6.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Property<?>createProperty(BT bean)Creates a newPropertyinstance for this property for a bean.StringgetName()Returns the name of the property.Class<?>getPropertyType()Returns the type of the property.
-