fitlibraryGeneric.specify.genericFinder.Pair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitlibrary Show documentation
Show all versions of fitlibrary Show documentation
FitLibrary provides general-purpose fixtures (and runners) for storytests with Fit and FitNesse.
The newest version!
package fitlibraryGeneric.specify.genericFinder;
public class Pair {
private S first;
private T second;
public Pair(S i, T j) {
this.first = i;
this.second = j;
}
public void setFirst(S first) {
this.first = first;
}
public void setSecond(T second) {
this.second = second;
}
@Override
public String toString() {
return "Pair["+first+","+second+"]";
}
}