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
Modifier and TypeMethodDescriptiongetPropertyDescriptor
(String propertyName) Gets a property descriptor for the given property name.String[]
Gets the names of all properties in the set.
-
Method Details
-
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
Gets a property descriptor for the given property name.- Parameters:
propertyName
- The property name.- Returns:
- A property descriptor, or
null
if no such exists.
-