Package com.bc.ceres.binding
Interface PropertySetDescriptor
-
- All Known Implementing Classes:
DefaultPropertySetDescriptor
public interface PropertySetDescriptor
A provider for property descriptors.- Since:
- 0.14
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyDescriptor
getPropertyDescriptor(String propertyName)
Gets a property descriptor for the given property name.String[]
getPropertyNames()
Gets the names of all properties in the set.
-
-
-
Method Detail
-
getPropertyNames
String[] getPropertyNames()
Gets the names of all properties in the set.- Returns:
- The array of names of all properties in the set, or an empty array if the set is empty.
-
getPropertyDescriptor
PropertyDescriptor getPropertyDescriptor(String propertyName)
Gets a property descriptor for the given property name.- Parameters:
propertyName
- The property name.- Returns:
- A property descriptor, or
null
if no such exists.
-
-