package Sequenic.T2ext.Analyzer; public class Pair { public Fst fst ; public Snd snd ; public Pair(Fst x, Snd y) { fst = x; snd = y ; } }