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

gumtree.spoon.diff.DiffConfiguration Maven / Gradle / Ivy

Go to download

Computes the AST difference between two Spoon abstract syntax trees using the Gumtree algorithm.

There is a newer version: 1.81
Show newest version
package gumtree.spoon.diff;

import com.github.gumtreediff.matchers.GumtreeProperties;
import com.github.gumtreediff.matchers.Matcher;

/**
 * Stores configuration to compute Diff
 */
public class DiffConfiguration {
	
	private Matcher matcher;

	private GumtreeProperties gumtreeProperties;

	public GumtreeProperties getGumtreeProperties() {
		return gumtreeProperties;
	}

	public void setGumtreeProperties(GumtreeProperties gumtreeProperties) {
		this.gumtreeProperties = gumtreeProperties;
	}

	public Matcher getMatcher() {
		return matcher;
	}

	public void setMatcher(Matcher matcher) {
		this.matcher = matcher;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy