import java.util.*;

/******************************************************************************
* This class holds the contents of each hardware catagory.  It holds the name
* of the catagory, and all the different componenents in that catagory.
*
* @author Michael Wales <a href="http://www.mwales.net">Homepage</a>
* @version 1.0 Flat File Reading Version 
******************************************************************************/
class HardwareListCatagory
{
   /** Name of the component of this catagory */
   public String ComponentName;
   
   /** List of all the components in this catagory */
   public Vector ComponentList;
   
   /** Last component number picked from this catagory */
   public int LastComponentPicked;
   
   public HardwareListCatagory()
   {
      ComponentName = "";
      ComponentList = new Vector();
      LastComponentPicked = -1;
   }
}
