public interface Pair { int getFirst(); int getSecond(); void setFirst(int value); void setSecond(int value); }