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

tbrugz.sqldiff.DiffGrabber Maven / Gradle / Ivy

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

import java.io.File;
import java.io.FileNotFoundException;
import java.io.Reader;

import javax.xml.bind.JAXBException;

import tbrugz.sqldiff.model.Diff;

public interface DiffGrabber {
	String type();
	Diff grabDiff(Reader reader) throws JAXBException;
	Diff grabDiff(File file) throws JAXBException, FileNotFoundException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy