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

aQute.bnd.service.diff.Tree Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy