refdiff.core.util.PairBeforeAfter 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.util;
public class PairBeforeAfter {
private final T before;
private final T after;
public PairBeforeAfter(T before, T after) {
this.before = before;
this.after = after;
}
public T getBefore() {
return before;
}
public T getAfter() {
return after;
}
}