<H1>Generics</H1>
<I>How do make this Generic?</I>

public class Inventory
{
  public void add(Object item) { // Item may be Book, CD, ...
    //...
  }
  public Object get(int index) {
   Object item = null;
   //...
   return null;
  }
}