01: package biz.hammurapi.config; 02: 03: import java.util.Iterator; 04: 05: /** 06: * Context which can enumerate values in it. 07: * @author Pavel 08: */ 09: public interface TraversableContext extends Context { 10: /** 11: * @return Iterator over names in the context. 12: */ 13: Iterator getNames(); 14: }