Système de réservation

  1. /*
  2.  * FlightSystemGUI.java
  3.  *
  4.  * Created on 4 décembre 2004, 18:52
  5.  */
  6. import reservation.Mode;
  7. import reservation.CustomDialog;
  8.  
  9. /**
  10.  * <B>The main entry to the Flight Reservation System with a GUI </B>
  11.  * The class FlightSystemGUI implements the entry point of the program.
  12.  * The main method of the program execute the graphic mode by creating a new instance of CustomDialog.
  13.  * @author Frederic Bidon and Mathieu Texier
  14.  * @version 1.0
  15.  * @see FlightSystem
  16.  */
  17. public class FlightSystemGUI {
  18.    
  19.     /** Creates a new instance of FlightSystemGUI */
  20.     public FlightSystemGUI () {
  21.     }
  22.    
  23.     /**
  24.      * Execute the program that open the main window of the graphic mode.
  25.      * @param unUsed String array no used for this mode
  26.      */
  27.     public static void main (String[] unUsed) {
  28.         Mode mode= new CustomDialog (Mode.DEBUG);
  29.         mode.process ();      
  30.     }
  31.    
  32. }
  33.  

contact - faire un lien