gr.uom.java.xmi.diff.RenameAttributeRefactoring 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.diff;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.refactoringminer.api.Refactoring;
import org.refactoringminer.api.RefactoringType;
import gr.uom.java.xmi.decomposition.VariableDeclaration;
public class RenameAttributeRefactoring implements Refactoring {
private VariableDeclaration originalAttribute;
private VariableDeclaration renamedAttribute;
private Set attributeRenames;
private String classNameBefore;
private String classNameAfter;
public RenameAttributeRefactoring(VariableDeclaration originalAttribute, VariableDeclaration renamedAttribute,
String classNameBefore, String classNameAfter, Set attributeRenames) {
this.originalAttribute = originalAttribute;
this.renamedAttribute = renamedAttribute;
this.classNameBefore = classNameBefore;
this.classNameAfter = classNameAfter;
this.attributeRenames = attributeRenames;
}
public VariableDeclaration getOriginalAttribute() {
return originalAttribute;
}
public VariableDeclaration getRenamedAttribute() {
return renamedAttribute;
}
public Set getAttributeRenames() {
return attributeRenames;
}
public String getClassNameBefore() {
return classNameBefore;
}
public String getClassNameAfter() {
return classNameAfter;
}
public RefactoringType getRefactoringType() {
return RefactoringType.RENAME_ATTRIBUTE;
}
public String getName() {
return this.getRefactoringType().getDisplayName();
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getName()).append("\t");
sb.append(originalAttribute);
sb.append(" to ");
sb.append(renamedAttribute);
sb.append(" in class ").append(classNameAfter);
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((classNameAfter == null) ? 0 : classNameAfter.hashCode());
result = prime * result + ((classNameBefore == null) ? 0 : classNameBefore.hashCode());
result = prime * result + ((originalAttribute == null) ? 0 : originalAttribute.hashCode());
result = prime * result + ((renamedAttribute == null) ? 0 : renamedAttribute.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
RenameAttributeRefactoring other = (RenameAttributeRefactoring) obj;
if (classNameAfter == null) {
if (other.classNameAfter != null)
return false;
} else if (!classNameAfter.equals(other.classNameAfter))
return false;
if (classNameBefore == null) {
if (other.classNameBefore != null)
return false;
} else if (!classNameBefore.equals(other.classNameBefore))
return false;
if (originalAttribute == null) {
if (other.originalAttribute != null)
return false;
} else if (!originalAttribute.equals(other.originalAttribute))
return false;
if (renamedAttribute == null) {
if (other.renamedAttribute != null)
return false;
} else if (!renamedAttribute.equals(other.renamedAttribute))
return false;
return true;
}
public Set> getInvolvedClassesBeforeRefactoring() {
Set> pairs = new LinkedHashSet>();
pairs.add(new ImmutablePair(getOriginalAttribute().getLocationInfo().getFilePath(), getClassNameBefore()));
return pairs;
}
public Set> getInvolvedClassesAfterRefactoring() {
Set> pairs = new LinkedHashSet>();
pairs.add(new ImmutablePair(getRenamedAttribute().getLocationInfo().getFilePath(), getClassNameAfter()));
return pairs;
}
@Override
public List leftSide() {
List ranges = new ArrayList();
ranges.add(originalAttribute.codeRange()
.setDescription("original attribute declaration")
.setCodeElement(originalAttribute.toString()));
return ranges;
}
@Override
public List rightSide() {
List ranges = new ArrayList();
ranges.add(renamedAttribute.codeRange()
.setDescription("renamed attribute declaration")
.setCodeElement(renamedAttribute.toString()));
return ranges;
}
}