Source : Ticketing.java

CS22120 Group Project - project source listings

Questions and comments on this file can be directed to this classes author: No Auhtor defined.

View Test Results.


package cs221.groupk.ticketing.gui;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;

import cs221.groupk.ticketing.*;
import cs221.groupk.common.GuiConstants;

/**
 *
 * <P><I>Code spell-checked - Chris Milner - 5th December 2000.</I><P>
 *
 */
public class Ticketing extends JFrame implements GuiConstants
{
  /**
   * drawComponents method is called from <CODE>execute()</CODE> to create 
   * the JFrame, and initilise all components.
   */
  protected void drawComponents()
  {
  }

  /**
   * execute is the first non-static method called by <CODE>main</CODE>.
   */
  protected void execute()
  {
    drawComponents();
  }

  /**
   * main is the executable bootstrap method called by the Java VM.
   * @param String[] arguments from the command line.
   */
  public static void main(String[] args)
  {
    Ticketing ticketing = new Ticketing();
    ticketing.execute();
  }
}


Up one level.

Page automatically generated on: 29/12/00 at: 1:26:50 AM.