Class Output_file

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

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

Class Output_file


Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
Output_file(java.awt.Frame f, java.util.Hashtable ht)
          The Constructor takes two arguments.
 
Method Summary
 void actionPerformed(java.awt.event.ActionEvent e)
          The function actionPerformed(ActionEvent e) is invoked when the user has pressed a button in the Dialog window.
 void run()
           
 
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

Output_file

public Output_file(java.awt.Frame f,
                   java.util.Hashtable ht)
The Constructor takes two arguments. The Frame who is the parent to the FileDialog window and the Hashtable from where data about participants should be read.
Method Detail

run

public void run()
Overrides:
run in class java.lang.Thread

actionPerformed

public void actionPerformed(java.awt.event.ActionEvent e)
The function actionPerformed(ActionEvent e) is invoked when the user has pressed a button in the Dialog window. If the button was "Cancel" the process of reading data is Canceled. If the button was "Ok" this process is finished
Specified by:
actionPerformed in interface java.awt.event.ActionListener