//********************************************************************
//  JukeBox.java       Author: Lewis and Loftus
//
//  Demonstrates the use of a combo box.
//********************************************************************

import JukeBoxControls;
import GenericWindowListener;
import java.awt.event.*;

public class JukeBox
{
   //-----------------------------------------------------------------
   //  Creates and displays the JukeBoxControls frame.
   //-----------------------------------------------------------------
   public static void main (String[] args)
   {
      JukeBoxControls frame = new JukeBoxControls();
      frame.addWindowListener (new GenericWindowListener());
      frame.show();
   }
}
