PropertySetFactory.java

biz/hammurapi/properties/PropertySetFactory.java

Violations

Inspector Message Severity Location
Java Inspector 048 Copyrights information should be present in each file. 1

Source code

1package biz.hammurapi.properties;
2
3/**
4 * Instantiates property sets.
5 * @author Pavel
6 */
7public interface PropertySetFactory {
8
9 /**
10 * Creates new property set.
11 * @param chain Property sets can be chained. Chaining allows to
12 * build hierarchies of property sets. New property set access operations
13 * delegate to chains if the property set itself does not contain requested
14 * values. All update and remove operations are local to the property
15 * set - chains are never modified.
16 * @return New property set.
17 */
18 PropertySet createPropertySet(PropertySet[] chain);
19}
20