de.jadv.server.lib
Class EventTimerTask

java.lang.Object
  |
  +--java.util.TimerTask
        |
        +--de.jadv.server.lib.EventTimerTask
All Implemented Interfaces:
java.lang.Runnable

public class EventTimerTask
extends java.util.TimerTask

EventTimerTask is a simple TimerTask, that adds an event to the EventList

Author:
neitzel

Field Summary
private  Event _Event
           
 
Fields inherited from class java.util.TimerTask
 
Constructor Summary
EventTimerTask(Event evt)
          Constructor
 
Method Summary
 void run()
          run() - Adds an Event to the EventList
 
Methods inherited from class java.util.TimerTask
cancel, scheduledExecutionTime
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_Event

private Event _Event
Constructor Detail

EventTimerTask

public EventTimerTask(Event evt)
Constructor

Parameters:
evt - - The Event, that should be queued into the EventQueue
Method Detail

run

public void run()
run() - Adds an Event to the EventList

Specified by:
run in interface java.lang.Runnable
Specified by:
run in class java.util.TimerTask
See Also:
Runnable.run()