blob: 6d60c82848e1c8ae7ae83faa5669a76b10f7a07d [file] [log] [blame]
package aQute.bnd.service.diff;
import aQute.lib.osgi.*;
/**
* Compare two Jars and report the differences.
*/
public interface Differ {
Tree tree(Analyzer source) throws Exception;
Tree tree(Jar source) throws Exception;
Tree deserialize(Tree.Data data) throws Exception;
}