gr.uom.java.xmi.diff.RemoveParameterRefactoring Maven / Gradle / Ivy
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.UMLOperation;
import gr.uom.java.xmi.UMLParameter;
public class RemoveParameterRefactoring implements Refactoring {
private UMLParameter parameter;
private UMLOperation operationBefore;
private UMLOperation operationAfter;
public RemoveParameterRefactoring(UMLParameter parameter, UMLOperation operationBefore,
UMLOperation operationAfter) {
this.parameter = parameter;
this.operationBefore = operationBefore;
this.operationAfter = operationAfter;
}
public UMLParameter getParameter() {
return parameter;
}
public UMLOperation getOperationBefore() {
return operationBefore;
}
public UMLOperation getOperationAfter() {
return operationAfter;
}
@Override
public List leftSide() {
List ranges = new ArrayList();
ranges.add(parameter.getVariableDeclaration().codeRange()
.setDescription("removed parameter")
.setCodeElement(parameter.getVariableDeclaration().toString()));
ranges.add(operationBefore.codeRange()
.setDescription("original method declaration")
.setCodeElement(operationBefore.toString()));
return ranges;
}
@Override
public List rightSide() {
List ranges = new ArrayList();
ranges.add(operationAfter.codeRange()
.setDescription("method declaration with removed parameter")
.setCodeElement(operationAfter.toString()));
return ranges;
}
@Override
public RefactoringType getRefactoringType() {
return RefactoringType.REMOVE_PARAMETER;
}
@Override
public String getName() {
return this.getRefactoringType().getDisplayName();
}
@Override
public Set> getInvolvedClassesBeforeRefactoring() {
Set> pairs = new LinkedHashSet>();
pairs.add(new ImmutablePair(getOperationBefore().getLocationInfo().getFilePath(), getOperationBefore().getClassName()));
return pairs;
}
@Override
public Set> getInvolvedClassesAfterRefactoring() {
Set> pairs = new LinkedHashSet>();
pairs.add(new ImmutablePair(getOperationAfter().getLocationInfo().getFilePath(), getOperationAfter().getClassName()));
return pairs;
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getName()).append("\t");
sb.append(parameter.getVariableDeclaration());
sb.append(" in method ");
sb.append(operationBefore);
sb.append(" from class ");
sb.append(operationBefore.getClassName());
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((parameter.getVariableDeclaration() == null) ? 0 : parameter.getVariableDeclaration().hashCode());
result = prime * result + ((operationAfter == null) ? 0 : operationAfter.hashCode());
result = prime * result + ((operationBefore == null) ? 0 : operationBefore.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;
RemoveParameterRefactoring other = (RemoveParameterRefactoring) obj;
if (parameter == null) {
if (other.parameter != null)
return false;
} else if (!parameter.getVariableDeclaration().equals(other.parameter.getVariableDeclaration()))
return false;
if (operationAfter == null) {
if (other.operationAfter != null)
return false;
} else if (!operationAfter.equals(other.operationAfter))
return false;
if (operationBefore == null) {
if (other.operationBefore != null)
return false;
} else if (!operationBefore.equals(other.operationBefore))
return false;
return true;
}
}