<H1>Clone</H1>
<I>What's up with this?</I>

public class Equipment implements Cloneable
{
  private final int id;
  private static int uniqueId;

  public Equipment() 
  { 
    id = uniqueId++;
  } 

  public int getId() { return id; }
  
  public Object clone() throws CloneNotSupportedException
  {
    return super.clone();
  }
}
