aQute.bnd.service.diff.Tree Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
package aQute.bnd.service.diff;
public interface Tree extends Comparable {
public class Data {
public String name;
public Type type = Type.METHOD;
public Delta add = Delta.MINOR;
public Delta rem = Delta.MAJOR;
public Data[] children = null;
public String comment = null;
}
Data serialize();
Tree[] getChildren();
String getName();
Type getType();
Delta ifAdded();
Delta ifRemoved();
Diff diff(Tree older);
Tree get(String name);
}