gumtree.spoon.builder.jsonsupport.NodePainter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gumtree-spoon-ast-diff Show documentation
Show all versions of gumtree-spoon-ast-diff Show documentation
Computes the AST difference between two Spoon abstract syntax trees using the Gumtree algorithm.
package gumtree.spoon.builder.jsonsupport;
import com.github.gumtreediff.tree.Tree;
import com.google.gson.JsonObject;
/**
*
* @author Matias Martinez
*
*/
public interface NodePainter {
public void paint(Tree tree, JsonObject jsontree);
}