Class Application

java.lang.Object
  extended byjava.lang.Thread
      extended byApplication
All Implemented Interfaces:
Listener, java.lang.Runnable

public class Application
extends java.lang.Thread
implements Listener


Field Summary
 
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
Application()
           
 
Method Summary
static void main(java.lang.String[] args)
           
 void receive(Signal s)
          Invoked when a signal is received.
 void run()
           
 
Methods inherited from class java.lang.Thread
activeCount, checkAccess, countStackFrames, currentThread, destroy, dumpStack, enumerate, getContextClassLoader, getName, getPriority, getThreadGroup, holdsLock, 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Application

public Application()
Method Detail

run

public void run()
Specified by:
run in interface java.lang.Runnable

receive

public void receive(Signal s)
Description copied from interface: Listener
Invoked when a signal is received.

Specified by:
receive in interface Listener
Parameters:
s - the received signal.

main

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