1 2 3 4 5 6 7 8 9 10 11 12 13 14 | package Torello.Java.Build; /** * Interface for classes which are placed inside the <B>{@code '../data-files/'}</B> directory of * a Java-Package Root Directory. */ public interface DataFileBuilderClass { /** * Data-File Builder Class must implement this method. * @param dataFilesDir The directory, itself. */ public void build(String dataFilesDir) throws java.io.IOException; } |