// Textbook fragment 02.A.03 public class PersonPairDirectoryGeneric
{ // ... instance variables would go here ... public PersonPairDirectoryGeneric() { /* default constructor goes here */ } public void insert (P person, P other) { /* insert code goes here */ } public P findOther (P person) { return null; } // stub for find public void remove (P person, P other) { /* remove code goes here */ } }