1 /* 2 * This is the interface for the pair class 3 */ 4 package alist; 5 6 /** 7 * 8 * @author sjenks 9 */ 10 public interface PairADT <A,B> { 11 public A a(); 12 public B b(); 13 14 } 15