Class Main

java.lang.Object
  extended byMain

public class Main
extends java.lang.Object

main class - starting class This class starts the gui with the look and feel of the current operating system

Author: Alexander Scheidl

Constructor Summary
Main()
           
 
Method Summary
static void main(java.lang.String[] args)
          main method.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Main

public Main()
Method Detail

main

public static void main(java.lang.String[] args)
main method.

EPC Main_process 1.: Sets the look and feel to the current operating system with the method from java swing getSystemLookAndFeelClassName().

After that the GUI (=Start Screen) will be started. Additionially all system properties will be shown (if started from command line) with help of the getproperties() method.
If one of the above named methods is not successful an error log will be shown (printStackTrace() method) and program stops.

Parameters:
args - the command line arguments
See Also:
GUI.GUI(), javax.swing.UIManger#getSystemLookAndFeelClassName(), throwable#printStrackTrace(), System.getProperties(), System#getProperties()#propertyNames(), Go to Code