001package Torello.Java.Build;
002
003/**
004 * Interface for classes which are placed inside the <B>{@code '../data-files/'}</B> directory of
005 * a Java-Package Root Directory.
006 */
007public interface DataFileBuilderClass
008{
009    /**
010     * Data-File Builder Class must implement this method.
011     * @param dataFilesDir The directory, itself.
012     */
013    public void build(String dataFilesDir) throws java.io.IOException;
014}