01: package biz.hammurapi.config; 02: 03: /** 04: * Context which requires another context to be functional and 05: * also delegates unresolved names to that context. 06: * @author Pavel 07: */ 08: public interface ChainedContext { 09: 10: Object get(String name, Context chain); 11: 12: }