001    package biz.hammurapi.config;
002    
003    import java.util.Iterator;
004    
005    /**
006     * Context which can enumerate values in it.
007     * @author Pavel
008     */
009    public interface TraversableContext extends Context {
010            /**
011             * @return Iterator over names in the context.
012             */
013            Iterator getNames();
014    }