The PropertyMap interface represents a collection of ControlBean properties. Concrete
implementations of this interface might derive property values from a local Map, Java 5.0
annotations, external configuration, or other property sources.
getProperty(PropertyKey key) Returns the property value specified by 'key' within this map.
public T
getPropertySet(Class<T> propertySet) Returns a PropertySet proxy instance that derives its data from the contents of
the property map.
public void
setDelegateMap(PropertyMap delegateMap) Sets a delegate base property map from which values will be derived if not found within
the local property map.
Returns the property value specified by 'key' within this map.
getPropertySet
public T getPropertySet(Class<T> propertySet)(Code)
Returns a PropertySet proxy instance that derives its data from the contents of
the property map. Will return null if the PropertyMap does not contain any properties
associated with the specified PropertySet.