Eidola home

org.eidola.test
Class Test

java.lang.Object
  |
  +--java.lang.Thread
        |
        +--org.eidola.test.Test
All Implemented Interfaces:
EventListener, Runnable

public class Test
extends Thread
implements EventListener

A very simple test of basic kernel features.

Version:
[Development version]
Author:
Paul Cantrell

Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
 
Constructor Summary
Test()
           
 
Method Summary
 void handleEvent(Event event)
          Handles an event.
static void main(String[] args)
           
 void test()
           
 
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, run, 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

Test

public Test()
Method Detail

main

public static void main(String[] args)
                 throws Exception

test

public void test()
          throws Exception

handleEvent

public void handleEvent(Event event)
Description copied from interface: EventListener
Handles an event. Implementations typically filter for specific subclasses of Event.
Specified by:
handleEvent in interface EventListener
Following copied from interface: org.eidola.kernel.event.EventListener
Parameters:
event - The event to handle.

Eidola home