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 byBeanItem
andAbstractBeanContainer
to 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 newProperty
instance for this property for a bean.String
getName()
Returns the name of the property.Class<?>
getPropertyType()
Returns the type of the property.
-