refdiff.core.cst.HasChildrenNodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refdiff-core Show documentation
Show all versions of refdiff-core Show documentation
An automated tool to detect refactorings in version histories
package refdiff.core.cst;
import java.util.List;
public interface HasChildrenNodes {
List getNodes();
void addNode(CstNode node);
}