blob: 869a237ce13675e81ba76d5e3e39a250fc2d55ad [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;
}