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

tbrugz.sqldiff.DiffDumper Maven / Gradle / Ivy

There is a newer version: 0.9.17
Show newest version
package tbrugz.sqldiff;

import java.io.File;
import java.io.IOException;
import java.io.Writer;
import java.util.Properties;

import javax.xml.bind.JAXBException;

import tbrugz.sqldiff.model.Diff;

public interface DiffDumper {
	String type();
	void setProperties(Properties prop);
	void dumpDiff(Diff diff, Writer writer) throws JAXBException, IOException;
	void dumpDiff(Diff diff, File file) throws JAXBException, IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy