| biz.hammurapi.web.properties.PropertySet
All known Subclasses: biz.hammurapi.web.properties.TransientPropertySet, biz.hammurapi.web.properties.PropertySubSet,
PropertySet | public interface PropertySet extends MutableContext,DomSerializable(Code) | | |
clear | void clear()(Code) | | Removes all entries from the property set
|
compareProperties | boolean compareProperties(PropertySet otherSet)(Code) | | Parameters: otherSet - true if all properties in this set are equal to properties in the other set. |
containsAll | boolean containsAll(PropertySet subSet)(Code) | | Parameters: subSet - true if all properties of subset are present in this set with same values |
getPropertyNames | Set getPropertyNames()(Code) | | Names of properties in the set |
getSubset | PropertySet getSubset(String prefix)(Code) | | Parameters: prefix - Property set which operates on properties starting with given prefix. |
load | void load(PropertySet source)(Code) | | Loads all entries from the source to this property set
Parameters: source - |
mount | void mount(String prefix, PropertySet source)(Code) | | Mounts source property set at specified prefix. E.g. if source property set has entry 'a' and prefix is 'b/' then that entry will be
available as 'b/a'. Own property set entries shall shadow mounted entries.
Parameters: prefix - Parameters: source - |
remove | void remove(String name)(Code) | | Removes property from the set.
Parameters: name - |
setAll | void setAll(PropertySet source)(Code) | | Copies all entries from the source property set to self.
Parameters: source - |
|
|