Source : RAndR.java

CS22120 Group Project - project source listings

Questions and comments on this file can be directed to this classes author: Gareth Lloyd Jones.

View Test Results.


package cs221.groupk.reportandreconciliation.gui;

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

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

/**
 * RAndR is the executable <B>G</B>raphcial <B>U</B>ser <B>I</B>nterface class.
 *
 * <P><I>Code spell-checked - Chris Milner - 5th December 2000.</I><P>
 *
 * @author <A HREF="mailto:[email protected]">Gareth Lloyd Jones.</A>
 */
public class RAndR 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)
  {
    RAndR randr = new RAndR();
    randr.execute();
  }
}


Up one level.

Page automatically generated on: 26/01/01 at: 10:48:19.