001 package biz.hammurapi.config; 002 003 /** 004 * Context which requires another context to be functional and 005 * also delegates unresolved names to that context. 006 * @author Pavel 007 */ 008 public interface ChainedContext { 009 010 Object get(String name, Context chain); 011 012 }