org.refactoringminer.api.CodeRangeProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of refactoring-miner Show documentation
Show all versions of refactoring-miner Show documentation
RefactoringMiner is a library/API written in Java that can detect refactorings applied in the history of a Java project.
package org.refactoringminer.api;
import java.util.List;
import gr.uom.java.xmi.diff.CodeRange;
public interface CodeRangeProvider {
List leftSide();
List rightSide();
}