//********************************************************************
//  Beatles.java       Author: Lewis and Loftus
//
//  Demonstrates the use of a Vector object.
//********************************************************************

import java.util.Vector;

public class Beatles
{
   //-----------------------------------------------------------------
   //  Stores and modifies a list of band members.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      Vector band = new Vector();

      band.addElement ("Paul");
      band.addElement ("Pete");
      band.addElement ("John");
      band.addElement ("George");

      System.out.println (band);

      band.removeElement ("Pete");

      System.out.println (band);
      System.out.println ("At index 1: " + band.elementAt(1));

      band.insertElementAt ("Ringo", 2);

      System.out.println (band);
      System.out.println ("Size of the band: " + band.size());
   }
}
