All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fastnate.data.DataChangeDetector Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package org.fastnate.data;

import java.io.File;

/**
 * Used to check if the generation of the SQL file has to start, because a changed file contains relevant data.
 *
 * @author Tobias Liefke
 */
public interface DataChangeDetector {

	/**
	 * Indicates that the given file contains relevant data for the SQL generation.
	 *
	 * @param file
	 *            the (source) file to check
	 * @return {@code true} if the given file is relevant for SQL generation
	 */
	boolean isDataFile(final File file);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy