Package com.bc.ceres.binding
Interface PropertyDescriptorFactory
-
- All Known Implementing Classes:
DefaultPropertyDescriptorFactory
,ParameterDescriptorFactory
public interface PropertyDescriptorFactory
A factory for property descriptors derived from Java classField
s.- Since:
- 0.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyDescriptor
createValueDescriptor(Field field)
Creates a new property descriptor for the given field.
-
-
-
Method Detail
-
createValueDescriptor
PropertyDescriptor createValueDescriptor(Field field)
Creates a new property descriptor for the given field.- Parameters:
field
- The field.- Returns:
- The property descriptor or
null
, if it cannot be derived from the given field.
-
-