Package com.bc.ceres.binding
Interface PropertySetDescriptor
-
- All Known Implementing Classes:
DefaultPropertySetDescriptor
public interface PropertySetDescriptorA provider for property descriptors.- Since:
- 0.14
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyDescriptorgetPropertyDescriptor(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
nullif no such exists.
-
-