Class About_window

java.lang.Object
  |
  +--java.lang.Thread
        |
        +--About_window

public class About_window
extends java.lang.Thread
implements java.awt.event.ActionListener

Class About_window


Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
About_window(java.awt.Frame f)
          The Constructor takes on argument.
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          The void actionPerformed(ActionEvent e) function is invoked when the User presses the "Ok" button in the about window.
 void run()
          The void run() function shows the about window.
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setName, setPriority, sleep, sleep, start, stop, stop, suspend, toString, yield
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

About_window

public About_window(java.awt.Frame f)
The Constructor takes on argument. The Frame f is the parent frame.
Method Detail

run

public void run()
The void run() function shows the about window.
Overrides:
run in class java.lang.Thread

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
The void actionPerformed(ActionEvent e) function is invoked when the User presses the "Ok" button in the about window. This disposes the window
Specified by:
actionPerformed in interface java.awt.event.ActionListener