gr.uom.java.xmi.decomposition.replacement.IntersectionReplacement 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 gr.uom.java.xmi.decomposition.replacement;
import java.util.Set;
public class IntersectionReplacement extends Replacement {
private Set commonElements;
public IntersectionReplacement(String before, String after, Set commonElements, ReplacementType type) {
super(before, after, type);
this.commonElements = commonElements;
}
public Set getCommonElements() {
return commonElements;
}
}