001    /*
002    @license.text@
003     */
004    package biz.hammurapi.config;
005    
006    import java.io.File;
007    
008    /**
009     * File configurable
010     * @author Pavel Vlasov
011     * @version $Revision: 1.2 $
012     */
013    public interface FileConfigurable {
014            /**
015             * Reads configuration from file
016             * @param file
017             * @param context
018             * @throws ConfigurationException
019             */
020            void configure(File file, Context context) throws ConfigurationException;       
021    }