Class App

java.lang.Object
angry3vilbot.bankingapp.App
All Implemented Interfaces:
Runnable

public class App extends Object implements Runnable
Main class for the Banking Application. This class sets up the GUI and redirects error output to a file. It also sets the look and feel of the application.
  • Constructor Details

    • App

      public App()
  • Method Details

    • main

      public static void main(String[] args)
      Main method to start the application. Redirects System.err to a file and sets the look and feel. Then it invokes the GUI.
      Parameters:
      args - command line arguments
    • run

      public void run()
      Run method to set up the GUI. This method is called on the Event Dispatch Thread (EDT). It initializes the User Interface and sets its properties.
      Specified by:
      run in interface Runnable